aboutsummaryrefslogtreecommitdiffstats
path: root/g10
diff options
context:
space:
mode:
Diffstat (limited to 'g10')
-rw-r--r--g10/ChangeLog5
-rw-r--r--g10/mainproc.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 7350871c4..5d4246e13 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,8 @@
+2003-12-03 Werner Koch <[email protected]>
+
+ * mainproc.c (check_sig_and_print): Removed the "0x" again.
+ Reverts change from 2003-10-03.
+
2003-12-02 David Shaw <[email protected]>
* g10.c (strusage, main): Show development version warning in
diff --git a/g10/mainproc.c b/g10/mainproc.c
index 1c70c2939..12561d966 100644
--- a/g10/mainproc.c
+++ b/g10/mainproc.c
@@ -1342,7 +1342,7 @@ check_sig_and_print( CTX c, KBNODE node )
tstr = asctimestamp(sig->timestamp);
astr = pubkey_algo_to_string( sig->pubkey_algo );
- log_info(_("Signature made %.*s using %s key ID 0x%08lX\n"),
+ log_info(_("Signature made %.*s using %s key ID %08lX\n"),
(int)strlen(tstr), tstr, astr? astr: "?", (ulong)sig->keyid[1] );
rc = do_check_sig(c, node, NULL, &is_expkey, &is_revkey );