diff options
author | Werner Koch <[email protected]> | 2010-09-28 13:21:42 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-09-28 13:21:42 +0000 |
commit | 9fbaba32a525adc7a255a18c35364fa21d35776b (patch) | |
tree | 681471eeae7d21cc7daf094a95f3bf595d81bf1e | |
parent | Allow more hash algorithms with the OpenPGP card. (diff) | |
download | gnupg-9fbaba32a525adc7a255a18c35364fa21d35776b.tar.gz gnupg-9fbaba32a525adc7a255a18c35364fa21d35776b.zip |
fix for bug1234.
-rw-r--r-- | g10/ChangeLog | 3 | ||||
-rw-r--r-- | g10/keyedit.c | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index 322c94cf7..ec7bdd8d1 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,5 +1,8 @@ 2010-09-28 Werner Koch <[email protected]> + * keyedit.c (show_key_with_all_names): Make revocation hint + cleared. Fixes bug#1234. + * call-agent.c (hash_algo_option): New. (agent_scd_pksign): Use it. diff --git a/g10/keyedit.c b/g10/keyedit.c index 2aa7c28e2..a00e7e5bd 100644 --- a/g10/keyedit.c +++ b/g10/keyedit.c @@ -2809,7 +2809,8 @@ show_key_with_all_names( KBNODE keyblock, int only_marked, int with_revoker, { char *user=get_user_id_string_native(pk->revoked.keyid); const char *algo = gcry_pk_algo_name (pk->revoked.algo); - tty_printf(_("This key was revoked on %s by %s key %s\n"), + tty_printf (_("The following key was revoked on" + " %s by %s key %s\n"), revokestr_from_pk(pk),algo?algo:"?",user); xfree(user); } |