g10: Don't include the signature when printing a binding's validity.

* g10/mainproc.c (check_sig_and_print): When printing information
about a binding don't include the current signature.

--
Signed-off-by: Neal H. Walfield <neal@g10code.com>
This commit is contained in:
Neal H. Walfield 2016-09-15 12:19:29 +02:00
parent 3248182d1b
commit dcc6466305
1 changed files with 2 additions and 2 deletions

View File

@ -1976,7 +1976,7 @@ check_sig_and_print (CTX c, kbnode_t node)
before calling that function. */
if ((opt.verify_options & VERIFY_SHOW_UID_VALIDITY))
valid = get_validity (c->ctrl, mainpk, un->pkt->pkt.user_id,
sig, 0);
NULL, 0);
else
valid = 0; /* Not used. */
@ -2078,7 +2078,7 @@ check_sig_and_print (CTX c, kbnode_t node)
information. */
valid = (trust_value_to_string
(get_validity (c->ctrl, mainpk,
un->pkt->pkt.user_id, sig, 0)));
un->pkt->pkt.user_id, NULL, 0)));
log_printf (" [%s]\n",valid);
}
else