From 4ef47e8fa6934d003434f3a37875d0abb98636d8 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Fri, 29 Sep 2017 22:01:59 -0600 Subject: [PATCH] * Remove unnecesary escape character in question to user when creating master password. --- pith/pine.hlp | 2 +- pith/smkeys.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pith/pine.hlp b/pith/pine.hlp index 86fc2a6..e4a2bac 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 ================= diff --git a/pith/smkeys.c b/pith/smkeys.c index ea4b551..9fde7b0 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 { -- 2.11.4.GIT