1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +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

@ -1063,13 +1063,15 @@ enum_sig_subpkt( const subpktarea_t *pktbuf, sigsubpkttype_t reqtype,
if( *critical ) {
if( n-1 > buflen+1 )
goto too_short;
if( !can_handle_critical(buffer+1, n-1, type ) ) {
log_info(_("subpacket of type %d has critical bit set\n"),
type);
if( !can_handle_critical(buffer+1, n-1, type ) )
{
if(opt.verbose)
log_info(_("subpacket of type %d has "
"critical bit set\n"),type);
if( start )
*start = seq;
*start = seq;
return NULL; /* this is an error */
}
}
}
}
else if( reqtype < 0 ) /* list packets */