diff options
author | David Shaw <dshaw@jabberwocky.com> | 2002-09-19 19:13:03 +0200 |
---|---|---|
committer | David Shaw <dshaw@jabberwocky.com> | 2002-09-19 19:13:03 +0200 |
commit | c4c0b1dc5be1bdb9b01a29f15e4bc8d4ea465a8a (patch) | |
tree | 5a45d2c4981436a0e1321dd7cb6b2c532bacef34 /g10/keylist.c | |
parent | * gpgkeys_hkp.c (get_key, handle_old_hkp_index, search_key): Properly (diff) | |
download | gnupg2-c4c0b1dc5be1bdb9b01a29f15e4bc8d4ea465a8a.tar.xz gnupg2-c4c0b1dc5be1bdb9b01a29f15e4bc8d4ea465a8a.zip |
From stable branch
* keyserver.c (keyserver_spawn): Properly handle line truncation. Don't
leak memory (~10-20 bytes) on searches.
(keyserver_search_prompt): Cleanup.
* keylist.c (list_keyblock_colon): Show 1F direct key signatures in
--with-colons listing.
Diffstat (limited to 'g10/keylist.c')
-rw-r--r-- | g10/keylist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/g10/keylist.c b/g10/keylist.c index 307735184..829b81249 100644 --- a/g10/keylist.c +++ b/g10/keylist.c @@ -837,6 +837,8 @@ list_keyblock_colon( KBNODE keyblock, int secret, int fpr ) sigstr = "sig"; else if( sig->sig_class == 0x18 ) sigstr = "sig"; + else if( sig->sig_class == 0x1F ) + sigstr = "sig"; else { printf ("sig::::::::::%02x%c:\n", sig->sig_class, sig->flags.exportable?'x':'l'); |