aboutsummaryrefslogtreecommitdiffstats
path: root/g10/encr-data.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1998-11-10 12:59:59 +0000
committerWerner Koch <[email protected]>1998-11-10 12:59:59 +0000
commitb076ce302189d619d170089f70afdb72dd0bf967 (patch)
tree736281f795268c3f712ed29167e21bc9078fc698 /g10/encr-data.c
parentready to release 0.4.3 (diff)
downloadgnupg-b076ce302189d619d170089f70afdb72dd0bf967.tar.gz
gnupg-b076ce302189d619d170089f70afdb72dd0bf967.zip
Some bug fixes of the last release
Diffstat (limited to 'g10/encr-data.c')
-rw-r--r--g10/encr-data.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/g10/encr-data.c b/g10/encr-data.c
index c9fca4d81..e5338c75d 100644
--- a/g10/encr-data.c
+++ b/g10/encr-data.c
@@ -56,9 +56,9 @@ decrypt_data( PKT_encrypted *ed, DEK *dek )
if( opt.verbose ) {
const char *s = cipher_algo_to_string( dek->algo );
if( s )
- log_info("%s encrypted data\n", s );
+ log_info(_("%s encrypted data\n"), s );
else
- log_info("encrypted with unknown algorithm %d\n", dek->algo );
+ log_info(_("encrypted with unknown algorithm %d\n"), dek->algo );
}
if( (rc=check_cipher_algo(dek->algo)) )
return rc;
@@ -71,7 +71,7 @@ decrypt_data( PKT_encrypted *ed, DEK *dek )
dfx.cipher_hd = cipher_open( dek->algo, CIPHER_MODE_AUTO_CFB, 1 );
rc = cipher_setkey( dfx.cipher_hd, dek->key, dek->keylen );
if( rc == G10ERR_WEAK_KEY )
- log_info(_("Warning: Message was encrypted with "
+ log_info(_("WARNING: Message was encrypted with "
"a weak key in the symmetric cipher.\n"));
else if( rc )
log_error("key setup failed: %s\n", g10_errstr(rc) );