diff options
author | Werner Koch <[email protected]> | 2019-08-05 06:56:19 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2019-08-05 06:59:12 +0000 |
commit | c6d9598a8572e7757504ddf53c01dcf611228143 (patch) | |
tree | 1e52a2db8082ac02cf2067c95e9b69fc888a0cc8 | |
parent | w32: Fix cast to internal fd. (diff) | |
download | libgpg-error-c6d9598a8572e7757504ddf53c01dcf611228143.tar.gz libgpg-error-c6d9598a8572e7757504ddf53c01dcf611228143.zip |
New error codes NO_KEYBOXD, KEYBOXD, NO_SERVICE, and SERVICE.
--
-rw-r--r-- | doc/errorref.txt | 20 | ||||
-rw-r--r-- | src/err-codes.h.in | 4 |
2 files changed, 23 insertions, 1 deletions
diff --git a/doc/errorref.txt b/doc/errorref.txt index 997c800..d6c06aa 100644 --- a/doc/errorref.txt +++ b/doc/errorref.txt @@ -568,7 +568,6 @@ GPG_ERR_INV_STATE Invalid state NTBTLS: - Data received in an unexpected state. - A function is called while not being in the right state. - GPG_ERR_DUP_VALUE Duplicated value GPG_ERR_MISSING_ACTION Missing action @@ -1068,6 +1067,25 @@ GPG_ERR_BAD_AUTH Bad authentication GnuPG: - A smartcard could not be authenticated. For example a wrong authentication key was used with a PIV card. +GPG_ERR_NO_KEYBOXD No Keyboxd running + + GnuPG: - The keyboxd component is not running + +GPG_ERR_KEYBOXD Keyboxd error + + GnuPG: - Malfunction in the keyboxd + +GPG_ERR_NO_SERVICE Service is not running + + A component is not running. Tnis is a generic version of + GPG_ERR_NO_AGENT et al. + +GPG_ERR_SERVICE Service error + + An error occured in a service component. This is a generic + version of GPG_ERR_AGENT et al. + + GPG_ERR_SYSTEM_BUG System bug detected The underlying operating system misbehaved. For example it wrote diff --git a/src/err-codes.h.in b/src/err-codes.h.in index 33e79da..70f3b01 100644 --- a/src/err-codes.h.in +++ b/src/err-codes.h.in @@ -335,6 +335,10 @@ 313 GPG_ERR_WRONG_NAME Wrong name 314 GPG_ERR_NO_AUTH Not authenticated 315 GPG_ERR_BAD_AUTH Bad authentication +316 GPG_ERR_NO_KEYBOXD No Keybox daemon running +317 GPG_ERR_KEYBOXD Keybox daemon error +318 GPG_ERR_NO_SERVICE Service is not running +319 GPG_ERR_SERVICE Service error # This range is free for use. 666 GPG_ERR_SYSTEM_BUG System bug detected |