1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* mainproc.c (check_sig_and_print): Show digest algorithm when verifying a

sig with --verbose on.

* parse-packet.c (enum_sig_subpkt): Make a warning message a --verbose
warning message since the devel version can make signatures that trigger
it each time.
This commit is contained in:
David Shaw 2003-04-26 21:35:22 +00:00
parent 9b6afa4fab
commit 2e6d0dd2e0
3 changed files with 20 additions and 5 deletions

View file

@ -1489,6 +1489,10 @@ check_sig_and_print( CTX c, KBNODE node )
else if(sig->expiredate)
log_info("Signature expires %s\n",asctimestamp(sig->expiredate));
if(opt.verbose)
log_info(_("digest algorithm %s\n"),
digest_algo_to_string(sig->digest_algo));
if( rc )
g10_errors_seen = 1;
if( opt.batch && rc )