diff options
author | Werner Koch <[email protected]> | 2010-03-12 22:24:13 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-03-12 22:24:13 +0000 |
commit | c9f6151c189ef7287ad278c4943a2d942470c6c4 (patch) | |
tree | 8f5581dffc0a48ddebb3733b50137fa8f1210475 /src | |
parent | Detect old gpg versions not featuring the --passwd command. (diff) | |
download | gpgme-c9f6151c189ef7287ad278c4943a2d942470c6c4.tar.gz gpgme-c9f6151c189ef7287ad278c4943a2d942470c6c4.zip |
Add constant to the template and not to a built file.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 3 | ||||
-rw-r--r-- | src/gpgme.h.in | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 887fbc5a..3cdd9aae 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2010-03-12 Werner Koch <[email protected]> + * gpgme.h.in (GPGME_STATUS_SUCCESS): Use the right file for the + change; see below. + * passwd.c (op_data_t): New. (passwd_start): Setup OPD. (passwd_status_handler): Return GPG_ERR_NOT_SUPPORTED if needed. diff --git a/src/gpgme.h.in b/src/gpgme.h.in index 57902f47..59ee77bf 100644 --- a/src/gpgme.h.in +++ b/src/gpgme.h.in @@ -494,7 +494,8 @@ typedef enum GPGME_STATUS_PLAINTEXT = 81, GPGME_STATUS_INV_SGNR = 82, - GPGME_STATUS_NO_SGNR = 83 + GPGME_STATUS_NO_SGNR = 83, + GPGME_STATUS_SUCCESS = 84 } gpgme_status_code_t; |