diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/gpg-error.h | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2003-06-22 Marcus Brinkmann <[email protected]> + + * src/gpg-error.h: Fix value of GPG_ERR_CANCELED. + 2003-06-06 Marcus Brinkmann <[email protected]> * configure.ac: Define GPG_ERROR_CONFIG_LIBS and diff --git a/src/gpg-error.h b/src/gpg-error.h index 5a127ec..dfd1a72 100644 --- a/src/gpg-error.h +++ b/src/gpg-error.h @@ -179,7 +179,7 @@ typedef enum GPG_ERR_CRL_TOO_OLD = 96, GPG_ERR_LINE_TOO_LONG = 97, GPG_ERR_NOT_TRUSTED = 98, - GPG_ERR_CANCELED = 109, + GPG_ERR_CANCELED = 99, GPG_ERR_BAD_CA_CERT = 100, GPG_ERR_CERT_EXPIRED = 101, /* Key signature expired. */ GPG_ERR_CERT_TOO_YOUNG = 102, |