diff options
author | Werner Koch <[email protected]> | 2014-12-15 10:40:27 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-12-15 10:40:27 +0000 |
commit | 923c4b174520c401a827d8198ebd2dc83666000f (patch) | |
tree | 2f3e900e032e0fa8f69dd21d84977ce52a74b33f | |
parent | Add GPG_ERR_FORBIDDEN. (diff) | |
download | libgpg-error-923c4b174520c401a827d8198ebd2dc83666000f.tar.gz libgpg-error-923c4b174520c401a827d8198ebd2dc83666000f.zip |
Add GPG_ERR_OBJ_TERM_STATE.
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | doc/errorref.txt | 16 | ||||
-rw-r--r-- | src/err-codes.h.in | 3 |
3 files changed, 13 insertions, 7 deletions
@@ -4,6 +4,7 @@ Noteworthy changes in version 1.18 (unreleased) [C13/A13/R_] * Interface changes relative to the 1.17 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ GPG_ERR_FORBIDDEN NEW. + GPG_ERR_OBJ_TERM_STATE NEW. Noteworthy changes in version 1.17 (2014-10-15) [C13/A13/R0] diff --git a/doc/errorref.txt b/doc/errorref.txt index 886a304..15a2013 100644 --- a/doc/errorref.txt +++ b/doc/errorref.txt @@ -509,11 +509,6 @@ GPG_ERR_TOO_MANY Too many objects maximum Assuan line length would overflow. GPGME: - To many patterns in gpgme-tools's KEYLIST command. -GPG_ERR_NO_KEYSERVER No keyserver available - - No keyserver configured or no keyserver available due to - missing support for the requested protocol. Found in Dirmngr. - GPG_ERR_LIMIT_REACHED Limit reached A programmed limit has been reached. @@ -529,7 +524,11 @@ GPG_ERR_NOT_INITIALIZED Not initialized fulfilled. 185 GPG_ERR_MISSING_ISSUER_CERT Missing issuer certificate -186 GPG_ERR_NO_KEYSERVER No keyserver available + +GPG_ERR_NO_KEYSERVER No keyserver available + + No keyserver configured or no keyserver available due to + missing support for the requested protocol. Found in Dirmngr. GPG_ERR_INV_CURVE Invalid elliptic curve @@ -612,6 +611,11 @@ GPG_ERR_MAC_ALGO 213 GPG_ERR_SEXP_BAD_OCT_CHAR Bad octal character in S-expression +GPG_ERR_OBJ_TERM_STATE Object is in termination state + + For cards this is the ISO status word 0x6285 (file is in + termnation state). + GPG_ERR_NO_CERT_CHAIN No certificate chain diff --git a/src/err-codes.h.in b/src/err-codes.h.in index 5990bd0..11699cf 100644 --- a/src/err-codes.h.in +++ b/src/err-codes.h.in @@ -247,8 +247,9 @@ 212 GPG_ERR_SEXP_ODD_HEX_NUMBERS Odd hexadecimal numbers in S-expression 213 GPG_ERR_SEXP_BAD_OCT_CHAR Bad octal character in S-expression -# 214 to 225 are free to be used. +# 214 to 224 are free to be used. +225 GPG_ERR_OBJ_TERM_STATE Object is in termination state 226 GPG_ERR_NO_CERT_CHAIN No certificate chain 227 GPG_ERR_CERT_TOO_LARGE Certificate is too large 228 GPG_ERR_INV_RECORD Invalid record |