1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-18 00:49:50 +02:00

Inadvertently left out of the 2003-06-01 checkin

This commit is contained in:
David Shaw 2003-06-04 21:21:23 +00:00
parent d79ea5df2b
commit 39e6e163d4
2 changed files with 10 additions and 2 deletions

View File

@ -437,6 +437,7 @@ static ARGPARSE_OPTS opts[] = {
{ oImportOptions, "import-options",2,"@"},
{ oExportOptions, "export-options",2,"@"},
{ oListOptions, "list-options",2,"@"},
{ oVerifyOptions, "verify-options",2,"@"},
{ oCharset, "charset" , 2, N_("|NAME|set terminal charset to NAME") },
{ oOptions, "options" , 2, N_("read options from file")},

View File

@ -1402,8 +1402,15 @@ check_sig_and_print( CTX c, KBNODE node )
if( !rc )
{
show_notation(sig,0,1);
show_policy_url(sig,0,1);
if(opt.verify_options&VERIFY_SHOW_POLICY)
show_policy_url(sig,0,1);
else
show_policy_url(sig,0,2);
if(opt.verify_options&VERIFY_SHOW_NOTATION)
show_notation(sig,0,1);
else
show_notation(sig,0,2);
}
if( !rc && is_status_enabled() ) {