diff options
author | Werner Koch <[email protected]> | 2003-10-03 12:49:48 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2003-10-03 12:49:48 +0000 |
commit | 342ae2b472cefa774d529e442eec04756bca87f0 (patch) | |
tree | 34e22628abf233780bc8c9a7cf7d75415dd2fb5d | |
parent | * samplekeys.asc: Update 99242560. (diff) | |
download | gnupg-342ae2b472cefa774d529e442eec04756bca87f0.tar.gz gnupg-342ae2b472cefa774d529e442eec04756bca87f0.zip |
* mainproc.c (check_sig_and_print): Prefix the key ID printed with
0x. Requested by Nelson H. F. Beebe.
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | g10/ChangeLog | 5 | ||||
-rw-r--r-- | g10/mainproc.c | 6 |
3 files changed, 11 insertions, 3 deletions
@@ -1,3 +1,6 @@ + + * Fix all new fuzzy translations due to prefixing the key ID with 0x + * Reword the message after create-revocation. * Reword the "Not enough entropy" messages. diff --git a/g10/ChangeLog b/g10/ChangeLog index df5059fe2..71f8a6ce6 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,8 @@ +2003-10-03 Werner Koch <[email protected]> + + * mainproc.c (check_sig_and_print): Prefix the key ID printed with + 0x. Requested by Nelson H. F. Beebe. + 2003-10-01 David Shaw <[email protected]> * g10.c (main): Add --no-groups to zero --group list. diff --git a/g10/mainproc.c b/g10/mainproc.c index 7bc9a9993..381728cfb 100644 --- a/g10/mainproc.c +++ b/g10/mainproc.c @@ -1303,9 +1303,9 @@ 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 %08lX\n"), - (int)strlen(tstr), tstr, astr? astr: "?", (ulong)sig->keyid[1] ); - + log_info(_("Signature made %.*s using %s key ID 0x%08lX\n"), + (int)strlen(tstr), tstr, astr? astr: "?", (ulong)sig->keyid[1] ); + rc = do_check_sig(c, node, NULL, &is_expkey, &is_revkey ); if( rc == G10ERR_NO_PUBKEY && opt.keyserver_scheme && opt.keyserver_options.auto_key_retrieve) { if( keyserver_import_keyid ( sig->keyid )==0 ) |