aboutsummaryrefslogtreecommitdiffstats
path: root/g10/keyedit.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2003-04-10 09:56:47 +0000
committerWerner Koch <[email protected]>2003-04-10 09:56:47 +0000
commit6b5587891221213706b131e262f95072b5ff6a63 (patch)
treef7ad6f0ea7eb77469d8e79cfc79e934087009bcd /g10/keyedit.c
parent* main.h, g10.c (main), import.c (parse_import_options, (diff)
downloadgnupg-6b5587891221213706b131e262f95072b5ff6a63.tar.gz
gnupg-6b5587891221213706b131e262f95072b5ff6a63.zip
* passphrase.c (read_passphrase_from_fd): Do a dummy read if the
agent is to be used. Noted by Ingo Kl�cker. (agent_get_passphrase): Inhibit caching when we have no fingerprint. This is required for key generation as well as for symmetric only encryption. * passphrase .c (agent_get_passphrase): New arg CANCELED. (passphrase_to_dek): Ditto. Passed to above. Changed all callers to pass NULL. * seckey-cert.c (do_check): New arg CANCELED. (check_secret_key): Terminate loop when canceled. * keyedit.c (change_passphrase): Pass ERRTEXT untranslated to passphrase_to_dek and translate where appropriate. * seckey-cert.c (check_secret_key): Ditto. * keygen.c (ask_passphrase): Ditto. * passphrase.c (agent_get_passphrase): Translate the TRYAGAIN_TEXT. Switch the codeset to utf-8.
Diffstat (limited to 'g10/keyedit.c')
-rw-r--r--g10/keyedit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/g10/keyedit.c b/g10/keyedit.c
index 9186bd931..2b954e285 100644
--- a/g10/keyedit.c
+++ b/g10/keyedit.c
@@ -915,10 +915,10 @@ change_passphrase( KBNODE keyblock )
s2k->mode = opt.s2k_mode;
s2k->hash_algo = opt.s2k_digest_algo;
dek = passphrase_to_dek( NULL, 0, opt.s2k_cipher_algo,
- s2k, 2, errtext);
+ s2k, 2, errtext, NULL);
if( !dek ) {
- errtext = _("passphrase not correctly repeated; try again");
- tty_printf ("%s.\n", errtext);
+ errtext = N_("passphrase not correctly repeated; try again");
+ tty_printf ("%s.\n", _(errtext));
}
else if( !dek->keylen ) {
rc = 0;