mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Document --auto-issuer-key-retrieve.
This commit is contained in:
parent
55ba204bfa
commit
c1270f06fe
7 changed files with 32 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
|||
2007-11-19 Werner Koch <wk@g10code.com>
|
||||
|
||||
* 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 <wk@g10code.com>
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue