diff options
author | Werner Koch <[email protected]> | 2003-12-22 12:58:31 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2003-12-22 12:58:31 +0000 |
commit | 5fe4eb3c8b8e1913022061892279ff661b4bad97 (patch) | |
tree | e275d2d6c121efeeb6ed0038b2b0fcb94202b2d2 | |
parent | Get the gettext version from the special GETTEXT_VERSION macro. (diff) | |
download | libgpg-error-5fe4eb3c8b8e1913022061892279ff661b4bad97.tar.gz libgpg-error-5fe4eb3c8b8e1913022061892279ff661b4bad97.zip |
Added GPG_ERR_LOCALE_PROBLEM.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | src/err-codes.h.in | 3 | ||||
-rw-r--r-- | src/gpg-error.h | 3 |
4 files changed, 15 insertions, 2 deletions
@@ -1,3 +1,11 @@ +2003-12-22 Werner Koch <[email protected]> + + * src/gpg-error.h: Added GPG_ERR_LOCALE_PROBLEM. + +2003-12-12 Werner Koch <[email protected]> + + * src/err-codes.h.in: s/revoced/revoked/. + 2003-12-08 Werner Koch <[email protected]> * README.CVS: Enhanced. @@ -2,6 +2,9 @@ Noteworthy changes in version 0.7 (unreleased) ---------------------------------------------- + * Interface changes relative to the 0.6 release: +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +GPG_ERR_LOCALE_PROBLEM NEW. Noteworthy changes in version 0.6 (2003-11-14) ---------------------------------------------- diff --git a/src/err-codes.h.in b/src/err-codes.h.in index e935e39..3463be1 100644 --- a/src/err-codes.h.in +++ b/src/err-codes.h.in @@ -121,7 +121,7 @@ 91 Wrong card 92 No dirmngr 93 dirmngr error -94 Certificate revoced +94 Certificate revoked 95 No CRL known 96 CRL too old 97 Line too long @@ -193,6 +193,7 @@ 163 Unsupported CRL version 164 Invalid certificate object 165 Unknown name +166 A locale function failed 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 94577fc..431bbaf 100644 --- a/src/gpg-error.h +++ b/src/gpg-error.h @@ -268,8 +268,9 @@ typedef enum GPG_ERR_UNSUPPORTED_CRL_VERSION = 163, GPG_ERR_INV_CERT_OBJ = 164, GPG_ERR_UNKNOWN_NAME = 165, + GPG_ERR_LOCALE_PROBLEM = 166, /* A problem with the locale occured. */ - /* 166 to 199 are free to be used. */ + /* 167 to 199 are free to be used. */ GPG_ERR_BUFFER_TOO_SHORT = 200, |