1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* mainproc.c (check_sig_and_print): Removed the "0x" again.

Reverts change from 2003-10-03.

* THANKS: Added Phong Nguyen, who found the Elgamal signing key
problem.

* configure.ac (ALL_LINGUAS): Added a Russian translation; thanks
to Maxim Britov.  Added Belarusion; thanks to Ales Nyakhaychyk.
This commit is contained in:
Werner Koch 2003-12-03 15:11:23 +00:00
parent 02d27268ca
commit 6970faab8f
8 changed files with 50 additions and 17 deletions

View file

@ -1,3 +1,8 @@
2003-12-03 Werner Koch <wk@gnupg.org>
* mainproc.c (check_sig_and_print): Removed the "0x" again.
Reverts change from 2003-10-03.
2003-12-02 David Shaw <dshaw@jabberwocky.com>
* g10.c (strusage, main): Show development version warning in

View file

@ -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 );