aboutsummaryrefslogtreecommitdiffstats
path: root/sm
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2007-11-19 16:32:05 +0000
committerWerner Koch <[email protected]>2007-11-19 16:32:05 +0000
commitc1270f06feda61ff864c485336d31db8a00cb56c (patch)
tree0643cd45958cb506d90cb7c2ef020c5049d0d47a /sm
parentStarted to implement the audit log feature. (diff)
downloadgnupg-c1270f06feda61ff864c485336d31db8a00cb56c.tar.gz
gnupg-c1270f06feda61ff864c485336d31db8a00cb56c.zip
Document --auto-issuer-key-retrieve.
Diffstat (limited to 'sm')
-rw-r--r--sm/ChangeLog2
-rw-r--r--sm/certlist.c2
-rw-r--r--sm/server.c2
3 files changed, 5 insertions, 1 deletions
diff --git a/sm/ChangeLog b/sm/ChangeLog
index 549779892..c033c3811 100644
--- a/sm/ChangeLog
+++ b/sm/ChangeLog
@@ -1,5 +1,7 @@
2007-11-19 Werner Koch <[email protected]>
+ * server.c (cmd_recipient, cmd_signer): Add error reason 11.
+
* gpgsm.c (main): Print a warning if --audit-log is used.
2007-11-15 Werner Koch <[email protected]>
diff --git a/sm/certlist.c b/sm/certlist.c
index 3afdbc30b..4c92a1bb3 100644
--- a/sm/certlist.c
+++ b/sm/certlist.c
@@ -359,7 +359,7 @@ gpgsm_add_to_certlist (ctrl_t ctrl, const char *name, int secret,
{
ksba_cert_t cert2 = NULL;
- /* If this is the first possible duplicate, add thye orginal
+ /* If this is the first possible duplicate, add the original
certificate to our list of duplicates. */
if (!dup_certs)
gpgsm_add_cert_to_certlist (ctrl, cert, &dup_certs, 0);
diff --git a/sm/server.c b/sm/server.c
index 3b0968257..df0005b94 100644
--- a/sm/server.c
+++ b/sm/server.c
@@ -380,6 +380,7 @@ cmd_recipient (assuan_context_t ctx, char *line)
r == GPG_ERR_NO_CRL_KNOWN? "6":
r == GPG_ERR_CRL_TOO_OLD? "7":
r == GPG_ERR_NO_POLICY_MATCH? "8":
+ r == GPG_ERR_MISSING_CERT? "11":
"0",
line, NULL);
}
@@ -425,6 +426,7 @@ cmd_signer (assuan_context_t ctx, char *line)
r == GPG_ERR_CRL_TOO_OLD? "7":
r == GPG_ERR_NO_POLICY_MATCH? "8":
r == GPG_ERR_NO_SECKEY? "9":
+ r == GPG_ERR_MISSING_CERT? "11":
"0",
line, NULL);
}