diff options
Diffstat (limited to 'lib/rpmcli.h')
-rw-r--r-- | lib/rpmcli.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rpmcli.h b/lib/rpmcli.h index 520c19536..f48cd39bf 100644 --- a/lib/rpmcli.h +++ b/lib/rpmcli.h @@ -484,7 +484,8 @@ int rpmCheckSig(rpmCheckSigFlags flags, /*@null@*/ const char ** argv) * Bit(s) to control rpmReSign() operation. */ typedef enum rpmResignFlags_e { - RESIGN_CHK_SIGNATURE = 0, /*!< from --checksig */ + RESIGN_NONE = 0, + RESIGN_CHK_SIGNATURE = 1, /*!< from --checksig */ RESIGN_NEW_SIGNATURE, /*!< from --resign */ RESIGN_ADD_SIGNATURE /*!< from --addsign */ } rpmResignFlags; |