aboutsummaryrefslogtreecommitdiffstats
path: root/g10/skclist.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/skclist.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/skclist.c')
-rw-r--r--g10/skclist.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/g10/skclist.c b/g10/skclist.c
index efd97f3d1..caaab207c 100644
--- a/g10/skclist.c
+++ b/g10/skclist.c
@@ -31,6 +31,7 @@
#include "keydb.h"
#include "memory.h"
#include "util.h"
+#include "i18n.h"
void
@@ -90,14 +91,14 @@ build_sk_list( STRLIST locusr, SK_LIST *ret_sk_list, int unlock,
sk->pubkey_usage = usage;
if( (rc = get_seckey_byname( sk, locusr->d, unlock )) ) {
free_secret_key( sk ); sk = NULL;
- log_error("skipped '%s': %s\n", locusr->d, g10_errstr(rc) );
+ log_error(_("skipped '%s': %s\n"), locusr->d, g10_errstr(rc) );
}
else if( !(rc=check_pubkey_algo2(sk->pubkey_algo, usage)) ) {
SK_LIST r;
if( sk->version == 4 && (usage & PUBKEY_USAGE_SIG)
&& sk->pubkey_algo == PUBKEY_ALGO_ELGAMAL_E ) {
- log_info("skipped '%s': this is a PGP generated "
- "ElGamal key which is not secure for signatures!\n",
+ log_info(_("skipped '%s': this is a PGP generated "
+ "ElGamal key which is not secure for signatures!\n"),
locusr->d );
free_secret_key( sk ); sk = NULL;
}