aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--g10/ChangeLog5
-rw-r--r--g10/keyedit.c2
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)