aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNIIBE Yutaka <[email protected]>2018-02-15 05:22:06 +0000
committerNIIBE Yutaka <[email protected]>2018-02-15 05:22:06 +0000
commitca138d5bf36accde2fd755249b470a8dc8743c95 (patch)
tree1e3a41da726f783c94b1086fe876513c93b78fb4
parentagent: Avoid appending a '\0' byte to the response of READKEY (diff)
downloadgnupg-ca138d5bf36accde2fd755249b470a8dc8743c95.tar.gz
gnupg-ca138d5bf36accde2fd755249b470a8dc8743c95.zip
gpg: Fix reversed messages for --only-sign-text-ids.
* g10/keyedit.c (keyedit_menu): Fix messages. -- GnuPG-bug-id: 3787 Fixes-commit: a74aeb5dae1f673fcd98b39a6a0496f3c622709a Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r--g10/keyedit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/keyedit.c b/g10/keyedit.c
index 4acb2de5f..17cf7d6ea 100644
--- a/g10/keyedit.c
+++ b/g10/keyedit.c
@@ -1664,11 +1664,11 @@ keyedit_menu (ctrl_t ctrl, const char *username, strlist_t locusr,
if (opt.only_sign_text_ids)
result = cpr_get_answer_is_yes
("keyedit.sign_all.okay",
- _("Really sign all user IDs? (y/N) "));
+ _("Really sign all text user IDs? (y/N) "));
else
result = cpr_get_answer_is_yes
("keyedit.sign_all.okay",
- _("Really sign all text user IDs? (y/N) "));
+ _("Really sign all user IDs? (y/N) "));
if (! result)
{