1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-22 10:19:57 +01:00

* mainproc.c (check_sig_and_print): Prefix the key ID printed with

0x.  Requested by Nelson H. F. Beebe.
This commit is contained in:
Werner Koch 2003-10-03 12:49:48 +00:00
parent 239753826f
commit 342ae2b472
3 changed files with 11 additions and 3 deletions

3
TODO
View File

@ -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 message after create-revocation.
* Reword the "Not enough entropy" messages. * Reword the "Not enough entropy" messages.

View File

@ -1,3 +1,8 @@
2003-10-03 Werner Koch <wk@gnupg.org>
* mainproc.c (check_sig_and_print): Prefix the key ID printed with
0x. Requested by Nelson H. F. Beebe.
2003-10-01 David Shaw <dshaw@jabberwocky.com> 2003-10-01 David Shaw <dshaw@jabberwocky.com>
* g10.c (main): Add --no-groups to zero --group list. * g10.c (main): Add --no-groups to zero --group list.

View File

@ -1303,9 +1303,9 @@ check_sig_and_print( CTX c, KBNODE node )
tstr = asctimestamp(sig->timestamp); tstr = asctimestamp(sig->timestamp);
astr = pubkey_algo_to_string( sig->pubkey_algo ); astr = pubkey_algo_to_string( sig->pubkey_algo );
log_info(_("Signature made %.*s using %s key ID %08lX\n"), log_info(_("Signature made %.*s using %s key ID 0x%08lX\n"),
(int)strlen(tstr), tstr, astr? astr: "?", (ulong)sig->keyid[1] ); (int)strlen(tstr), tstr, astr? astr: "?", (ulong)sig->keyid[1] );
rc = do_check_sig(c, node, NULL, &is_expkey, &is_revkey ); 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( rc == G10ERR_NO_PUBKEY && opt.keyserver_scheme && opt.keyserver_options.auto_key_retrieve) {
if( keyserver_import_keyid ( sig->keyid )==0 ) if( keyserver_import_keyid ( sig->keyid )==0 )