diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/ChangeLog | 5 | ||||
-rw-r--r-- | common/status.c | 1 | ||||
-rw-r--r-- | common/util.h | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/common/ChangeLog b/common/ChangeLog index 1fb20d769..c0f618e85 100644 --- a/common/ChangeLog +++ b/common/ChangeLog @@ -1,3 +1,8 @@ +2010-09-16 Werner Koch <[email protected]> + + * util.h: Add GPG_ERR_MISSING_ISSUER_CERT. + * status.c (get_inv_recpsgnr_code): Ditto. + 2010-05-03 Werner Koch <[email protected]> * asshelp.c (lock_agent_spawning, unlock_agent_spawning): New. diff --git a/common/status.c b/common/status.c index e9f84bfd1..7b9f4a3ae 100644 --- a/common/status.c +++ b/common/status.c @@ -58,6 +58,7 @@ get_inv_recpsgnr_code (gpg_error_t err) case GPG_ERR_NOT_TRUSTED: errstr = "10"; break; case GPG_ERR_MISSING_CERT: errstr = "11"; break; + case GPG_ERR_MISSING_ISSUER_CERT: errstr = "12"; break; default: errstr = "0"; break; } diff --git a/common/util.h b/common/util.h index 3eed4eba8..cad6c8e5c 100644 --- a/common/util.h +++ b/common/util.h @@ -29,6 +29,9 @@ #ifndef GPG_ERR_NOT_ENABLED #define GPG_ERR_NOT_ENABLED 179 #endif +#ifndef GPG_ERR_MISSING_ISSUER_CERT +#define GPG_ERR_MISSING_ISSUER_CERT 185 +#endif /* Hash function used with libksba. */ #define HASH_FNC ((void (*)(void *, const void*,size_t))gcry_md_write) |