mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-11 21:48:50 +01:00
gpg: Fix error code arg in ERRSIG status line.
* g10/mainproc.c (check_sig_and_print): Use gpg_err_code to return an error code in ERRSIG. -- Debian-bug-id: 846834 Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
ce29272e24
commit
ef10c348bf
@ -2223,7 +2223,7 @@ check_sig_and_print (CTX c, kbnode_t node)
|
||||
snprintf (buf, sizeof buf, "%08lX%08lX %d %d %02x %lu %d",
|
||||
(ulong)sig->keyid[0], (ulong)sig->keyid[1],
|
||||
sig->pubkey_algo, sig->digest_algo,
|
||||
sig->sig_class, (ulong)sig->timestamp, rc);
|
||||
sig->sig_class, (ulong)sig->timestamp, gpg_err_code (rc));
|
||||
write_status_text (STATUS_ERRSIG, buf);
|
||||
if (gpg_err_code (rc) == GPG_ERR_NO_PUBKEY)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user