diff options
author | Michael Schroeder <mls@suse.de> | 2014-09-15 14:25:13 +0200 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2014-09-15 14:25:13 +0200 |
commit | 8674de477d8e7cb51768b5e97e3b5e8d97c2174e (patch) | |
tree | 9619826a4b45e3cd8549c2ea6ddbe70a136fb82d /lib/rpmds.h | |
parent | 7eaeec35e635415600f417324bef3d7933a9aa8f (diff) | |
download | rpm-8674de477d8e7cb51768b5e97e3b5e8d97c2174e.tar.gz |
Add support for THEN and ELSE rich ops
Obviously we will not support both IF and THEN, so this is
to test what works and what should be removed.
Diffstat (limited to 'lib/rpmds.h')
-rw-r--r-- | lib/rpmds.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/rpmds.h b/lib/rpmds.h index 871941973..9efb26f57 100644 --- a/lib/rpmds.h +++ b/lib/rpmds.h @@ -468,7 +468,9 @@ typedef enum rpmrichOp_e { RPMRICHOP_SINGLE = 1, RPMRICHOP_AND = 2, RPMRICHOP_OR = 3, - RPMRICHOP_IF = 4 + RPMRICHOP_IF = 4, + RPMRICHOP_THEN = 5, + RPMRICHOP_ELSE = 6 } rpmrichOp; typedef enum rpmrichParseType_e { |