diff options
author | Werner Koch <[email protected]> | 2010-09-16 14:17:50 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-09-16 14:17:50 +0000 |
commit | b927279603f79dc08f84e117cf0797d2f9db593d (patch) | |
tree | 986cfd518add2ed99a5fa089e85979513ef5babc /src/import.c | |
parent | Add a new error code. (diff) | |
download | gpgme-b927279603f79dc08f84e117cf0797d2f9db593d.tar.gz gpgme-b927279603f79dc08f84e117cf0797d2f9db593d.zip |
Return GPG_ERR_MISSING_ISSUER_CERT.
Diffstat (limited to 'src/import.c')
-rw-r--r-- | src/import.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/import.c b/src/import.c index ff5f9b32..784ce165 100644 --- a/src/import.c +++ b/src/import.c @@ -30,6 +30,7 @@ #include "debug.h" #include "context.h" #include "ops.h" +#include "util.h" typedef struct @@ -149,7 +150,7 @@ parse_import (char *args, gpgme_import_status_t *import_status, int problem) break; case 2: - import->result = gpg_error (GPG_ERR_MISSING_CERT); + import->result = gpg_error (GPG_ERR_MISSING_ISSUER_CERT); break; case 3: |