diff options
author | David Shaw <[email protected]> | 2004-04-29 03:42:54 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-04-29 03:42:54 +0000 |
commit | 0842905be3400129a42dd78e89e3b9fd06af5487 (patch) | |
tree | 2ecab520a2d57a45089dcb1dd72fedb293efb41d /g10/mainproc.c | |
parent | * card-util.c (card_edit): Require PIN only for generate. (diff) | |
download | gnupg-0842905be3400129a42dd78e89e3b9fd06af5487.tar.gz gnupg-0842905be3400129a42dd78e89e3b9fd06af5487.zip |
* main.h, keylist.c (show_notation): Add argument to show only user
notations, only standard notations, or both. Change all callers.
* keyserver.c (keyserver_spawn): We still need EXEC_TEMPFILE_ONLY.
Diffstat (limited to '')
-rw-r--r-- | g10/mainproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/mainproc.c b/g10/mainproc.c index 70b45b9a1..5a12225c9 100644 --- a/g10/mainproc.c +++ b/g10/mainproc.c @@ -1539,9 +1539,9 @@ check_sig_and_print( CTX c, KBNODE node ) show_keyserver_url(sig,0,2); if(opt.verify_options&VERIFY_SHOW_NOTATIONS) - show_notation(sig,0,1); + show_notation(sig,0,1,0); else - show_notation(sig,0,2); + show_notation(sig,0,2,0); } if( !rc && is_status_enabled() ) { |