diff options
author | Werner Koch <[email protected]> | 2008-07-30 10:25:18 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-07-30 10:25:18 +0000 |
commit | e27ca6e059f1bc3b4a6d7346cbf9c783872692a6 (patch) | |
tree | ab7f9ab35230d73d68edb43ae7147ad33a691b0f /scd/app-openpgp.c | |
parent | Update. (diff) | |
download | gnupg-e27ca6e059f1bc3b4a6d7346cbf9c783872692a6.tar.gz gnupg-e27ca6e059f1bc3b4a6d7346cbf9c783872692a6.zip |
prompt change.
Diffstat (limited to 'scd/app-openpgp.c')
-rw-r--r-- | scd/app-openpgp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scd/app-openpgp.c b/scd/app-openpgp.c index 2eecc9df3..cfc51ce45 100644 --- a/scd/app-openpgp.c +++ b/scd/app-openpgp.c @@ -1412,7 +1412,7 @@ verify_a_chv (app_t app, #define PROMPTSTRING _("||Please enter the PIN%%0A[sigs done: %lu]") size_t promptsize = strlen (PROMPTSTRING) + 50; - prompt = xmalloc (promptsize); + prompt = xtrymalloc (promptsize); if (!prompt) return gpg_error_from_syserror (); snprintf (prompt, promptsize-1, PROMPTSTRING, sigcount); @@ -1421,7 +1421,7 @@ verify_a_chv (app_t app, #undef PROMPTSTRING } else - rc = pincb (pincb_arg, "PIN", pinvalue); + rc = pincb (pincb_arg, _("||Please enter the PIN"), pinvalue); if (rc) { |