summaryrefslogtreecommitdiff
path: root/pith/smkeys.c
diff options
context:
space:
mode:
Diffstat (limited to 'pith/smkeys.c')
-rw-r--r--pith/smkeys.c4
1 files changed, 2 insertions, 2 deletions
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 {