diff options
author | David Shaw <[email protected]> | 2002-11-05 22:30:59 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-11-05 22:30:59 +0000 |
commit | 666dcb370bee7f84150ff2b7c8be157911a81fdc (patch) | |
tree | 61ec59d511fc08760586f95e1b84dec050ebf2e2 | |
parent | * g10.c (main): Add a mostly noop --trust-model option to smooth (diff) | |
download | gnupg-666dcb370bee7f84150ff2b7c8be157911a81fdc.tar.gz gnupg-666dcb370bee7f84150ff2b7c8be157911a81fdc.zip |
* keyedit.c (show_key_with_all_names_colon): Don't stick nulls into the
--with-colons listing.
-rw-r--r-- | g10/ChangeLog | 5 | ||||
-rw-r--r-- | g10/keyedit.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index 097039d2c..f42900b57 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,8 @@ +2002-11-05 David Shaw <[email protected]> + + * keyedit.c (show_key_with_all_names_colon): Don't stick nulls + into the --with-colons listing. + 2002-11-04 David Shaw <[email protected]> * g10.c (main): Add a mostly noop --trust-model option to smooth diff --git a/g10/keyedit.c b/g10/keyedit.c index a15f9e53f..7c5aec4b9 100644 --- a/g10/keyedit.c +++ b/g10/keyedit.c @@ -1573,7 +1573,7 @@ show_key_with_all_names_colon (KBNODE keyblock) || (node->pkt->pkttype == PKT_PUBLIC_SUBKEY) ) { PKT_public_key *pk = node->pkt->pkt.public_key; - int otrust=0, trust=0; + int otrust='-', trust='-'; u32 keyid[2]; if (node->pkt->pkttype == PKT_PUBLIC_KEY) |