diff options
author | David Shaw <[email protected]> | 2003-08-26 03:56:47 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-08-26 03:56:47 +0000 |
commit | 68aa60e79c080620cb0c95cd6992b8bb0656cf63 (patch) | |
tree | e91c32499a2c1404bb60d8d0f1ef3d5c33d1734d /g10/keylist.c | |
parent | * NEWS: Note %g and %p, the "tru" --with-colons record, and the REVKEYSIG (diff) | |
download | gnupg-68aa60e79c080620cb0c95cd6992b8bb0656cf63.tar.gz gnupg-68aa60e79c080620cb0c95cd6992b8bb0656cf63.zip |
* mainproc.c (check_sig_and_print): Use two different preferred keyserver
displays - one if the key is not present (to tell the user where to get
the key), the other if it is present (to tell the user where the key can
be refreshed).
* packet.h, parse-packet.c (parse_signature): Set flag if a preferred
keyserver is present.
* keylist.c (list_keyblock_print): Show keyserver url in listings with
list-option show-keyserver-url.
Diffstat (limited to 'g10/keylist.c')
-rw-r--r-- | g10/keylist.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/g10/keylist.c b/g10/keylist.c index e01d8d993..dace1e742 100644 --- a/g10/keylist.c +++ b/g10/keylist.c @@ -845,6 +845,9 @@ list_keyblock_print ( KBNODE keyblock, int secret, int fpr, void *opaque ) if(sig->flags.notation && (opt.list_options&LIST_SHOW_NOTATION)) show_notation(sig,3,0); + if(sig->flags.pref_ks && (opt.list_options&LIST_SHOW_KEYSERVER)) + show_keyserver_url(sig,3,0); + /* fixme: check or list other sigs here */ } } |