diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | src/err-codes.h.in | 5 | ||||
-rw-r--r-- | src/gpg-error.h | 10 |
3 files changed, 8 insertions, 15 deletions
@@ -1,3 +1,9 @@ +2003-11-13 Werner Koch <[email protected]> + + * src/gpg-error.h, src/err-codes.h.in: Removed: GPG_ERR_IO_ERROR, + GPG_ERR_FILE_ERROR, GPG_ERR_READ_ERROR, GPG_ERR_WRITE_ERROR, + GPG_ERR_LOCK_ERROR. + 2003-11-12 Werner Koch <[email protected]> * src/gpg-error.h, src/err-codes.h.in: Added these codes: @@ -15,7 +21,7 @@ GPG_ERR_UNSUPPORTED_CRL_VERSION, GPG_ERR_INV_CERT_OBJ, GPG_ERR_UNKNOWN_NAME, GPG_ERR_IO_ERROR, GPG_ERR_FILE_ERROR, GPG_ERR_READ_ERROR, GPG_ERR_WRITE_ERROR, GPG_ERR_LOCK_ERROR, - GPG_ERR_BUFFER_TOO_SHORT + GPG_ERR_BUFFER_TOO_SHORT. 2003-11-06 Werner Koch <[email protected]> diff --git a/src/err-codes.h.in b/src/err-codes.h.in index 52bc5cd..e935e39 100644 --- a/src/err-codes.h.in +++ b/src/err-codes.h.in @@ -193,11 +193,6 @@ 163 Unsupported CRL version 164 Invalid certificate object 165 Unknown name -190 Generic I/O error -191 Generic file operation error -192 Generic read operation error -193 Generic write operation error -194 Generic lock operation error 199 Buffer too short 201 Invalid length specifier in S-expression 202 String too long in S-expression diff --git a/src/gpg-error.h b/src/gpg-error.h index 644713a..1805369 100644 --- a/src/gpg-error.h +++ b/src/gpg-error.h @@ -269,16 +269,8 @@ typedef enum GPG_ERR_INV_CERT_OBJ = 164, GPG_ERR_UNKNOWN_NAME = 165, - /* 166 to 189 are free to be used. */ + /* 166 to 199 are free to be used. */ - GPG_ERR_IO_ERROR = 190, /* Generic I/O error. */ - GPG_ERR_FILE_ERROR = 191, /* Generic file operation error. */ - GPG_ERR_READ_ERROR = 192, /* Generic read operation error. */ - GPG_ERR_WRITE_ERROR = 193, /* Generic write operation error. */ - GPG_ERR_LOCK_ERROR = 194, /* Generic lock operation error. */ - - /* 195 to 199 are free to be used. */ - GPG_ERR_BUFFER_TOO_SHORT = 200, /* Error codes pertaining to S-expressions. */ |