diff options
author | David Shaw <[email protected]> | 2002-08-06 17:38:04 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-08-06 17:38:04 +0000 |
commit | 58b0a36d6b096f9c38f90c5b4c2daae5b6182989 (patch) | |
tree | aff0ed79cdaef83e30e3ffcbb71ea7d33a7cc44f /g10/sign.c | |
parent | * gpg.sgml: Clarify that only long-form options can go in the config file. (diff) | |
download | gnupg-58b0a36d6b096f9c38f90c5b4c2daae5b6182989.tar.gz gnupg-58b0a36d6b096f9c38f90c5b4c2daae5b6182989.zip |
* encode.c (encode_crypt), g10.c (main), sign.c (sign_file,
clearsign_file): Use the same --pgpX warning string everywhere to ease
translations.
* encode.c (write_pubkey_enc_from_list): Warn when using --throw-keyid
with --pgpX. Noted by Vedaal Nistar.
Diffstat (limited to 'g10/sign.c')
-rw-r--r-- | g10/sign.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/sign.c b/g10/sign.c index 6a8ce2991..ac6f077d6 100644 --- a/g10/sign.c +++ b/g10/sign.c @@ -643,7 +643,7 @@ sign_file( STRLIST filenames, int detached, STRLIST locusr, { log_info(_("you can only detach-sign with PGP 2.x style keys " "while in --pgp2 mode\n")); - log_info(_("this message may not be usable by PGP 2.x\n")); + log_info(_("this message may not be usable by %s\n"),"PGP 2.x"); opt.pgp2=0; } @@ -875,7 +875,7 @@ clearsign_file( const char *fname, STRLIST locusr, const char *outfile ) { log_info(_("you can only clearsign with PGP 2.x style keys " "while in --pgp2 mode\n")); - log_info(_("this message may not be usable by PGP 2.x\n")); + log_info(_("this message may not be usable by %s\n"),"PGP 2.x"); opt.pgp2=0; } |