aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2010-09-28 13:21:42 +0000
committerWerner Koch <[email protected]>2010-09-28 13:21:42 +0000
commit9fbaba32a525adc7a255a18c35364fa21d35776b (patch)
tree681471eeae7d21cc7daf094a95f3bf595d81bf1e
parentAllow more hash algorithms with the OpenPGP card. (diff)
downloadgnupg-9fbaba32a525adc7a255a18c35364fa21d35776b.tar.gz
gnupg-9fbaba32a525adc7a255a18c35364fa21d35776b.zip
fix for bug1234.
-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);
}