aboutsummaryrefslogtreecommitdiffstats
path: root/g10
diff options
context:
space:
mode:
Diffstat (limited to 'g10')
-rw-r--r--g10/ChangeLog3
-rw-r--r--g10/keyedit.c3
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);
}