summaryrefslogtreecommitdiff
path: root/pith
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2017-09-29 22:01:59 -0600
committerEduardo Chappa <chappa@washington.edu>2017-09-29 22:01:59 -0600
commit4ef47e8fa6934d003434f3a37875d0abb98636d8 (patch)
tree164be23f4beb077ab132b2e30b525f95aa369502 /pith
parent1ba0698db6a2a3bfb0834b37a1e4fda47bb7589d (diff)
downloadalpine-4ef47e8fa6934d003434f3a37875d0abb98636d8.tar.xz
* Remove unnecesary escape character in question to user when creating
master password.
Diffstat (limited to 'pith')
-rw-r--r--pith/pine.hlp2
-rw-r--r--pith/smkeys.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/pith/pine.hlp b/pith/pine.hlp
index 86fc2a60..e4a2bac0 100644
--- a/pith/pine.hlp
+++ b/pith/pine.hlp
@@ -140,7 +140,7 @@ with help text for the config screen and the composer that didn't have any
reasonable place to be called from.
Dummy change to get revision in pine.hlp
============= h_revision =================
-Alpine Commit 220 2017-09-29 21:32:36
+Alpine Commit 221 2017-09-29 22:01:56
============= h_news =================
<HTML>
<HEAD>
diff --git a/pith/smkeys.c b/pith/smkeys.c
index ea4b551e..9fde7b08 100644
--- a/pith/smkeys.c
+++ b/pith/smkeys.c
@@ -95,7 +95,7 @@ create_master_password(char *pass, size_t passlen, int first_time)
for(trial = 0; trial < MAXTRIAL; trial++){
snprintf(prompt, sizeof(prompt),
- _("Create master password \(attempt %d of %d): "), trial+1, MAXTRIAL);
+ _("Create master password (attempt %d of %d): "), trial+1, MAXTRIAL);
prompt[sizeof(prompt)- 1] = '\0';
pass[0] = '\0';
do {
@@ -107,7 +107,7 @@ create_master_password(char *pass, size_t passlen, int first_time)
} while ((rv != 0 && rv != 1) || (rv == 0 && pass[0] == '\0'));
snprintf(prompt, sizeof(prompt),
- _("Confirm master password \(attempt %d of %d): "), trial+1, MAXTRIAL);
+ _("Confirm master password (attempt %d of %d): "), trial+1, MAXTRIAL);
prompt[sizeof(prompt)- 1] = '\0';
passbackup[0] = '\0';
do {