diff options
author | Werner Koch <[email protected]> | 2003-11-13 07:02:52 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2003-11-13 07:02:52 +0000 |
commit | 35282771dc76635c18007b728a2cf42d6296da80 (patch) | |
tree | 03b05b7b1ff0a2ef2cc9c8a08e5e99dbed806965 /src | |
parent | Added these codes: (diff) | |
download | libgpg-error-35282771dc76635c18007b728a2cf42d6296da80.tar.gz libgpg-error-35282771dc76635c18007b728a2cf42d6296da80.zip |
Removed: GPG_ERR_IO_ERROR,
GPG_ERR_FILE_ERROR, GPG_ERR_READ_ERROR, GPG_ERR_WRITE_ERROR,
GPG_ERR_LOCK_ERROR.
Diffstat (limited to 'src')
-rw-r--r-- | src/err-codes.h.in | 5 | ||||
-rw-r--r-- | src/gpg-error.h | 10 |
2 files changed, 1 insertions, 14 deletions
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. */ |