summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 {