mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
common,gpg: Move the compliance option printer.
* common/compliance.c (gnupg_compliance_option_string): New function. * common/compliance.h (gnupg_compliance_option_string): New prototype. * g10/encrypt.c (write_pubkey_enc_from_list): Update callsite. * g10/gpg.c (main): Likewise. * g10/keyedit.c (keyedit_menu): Likewise. * g10/pkclist.c (build_pk_list): Likewise. * g10/main.h (compliance_option_string): Remove prototype. * g10/misc.c (compliance_option_string): Remove function. GnuPG-bug-id: 3191 Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
parent
842d233d40
commit
f440cf73ea
8 changed files with 32 additions and 28 deletions
12
g10/gpg.c
12
g10/gpg.c
|
@ -3843,17 +3843,17 @@ main (int argc, char **argv)
|
|||
case PREFTYPE_SYM:
|
||||
log_info(_("you may not use cipher algorithm '%s'"
|
||||
" while in %s mode\n"),
|
||||
badalg,compliance_option_string());
|
||||
badalg, gnupg_compliance_option_string (opt.compliance));
|
||||
break;
|
||||
case PREFTYPE_HASH:
|
||||
log_info(_("you may not use digest algorithm '%s'"
|
||||
" while in %s mode\n"),
|
||||
badalg,compliance_option_string());
|
||||
badalg, gnupg_compliance_option_string (opt.compliance));
|
||||
break;
|
||||
case PREFTYPE_ZIP:
|
||||
log_info(_("you may not use compression algorithm '%s'"
|
||||
" while in %s mode\n"),
|
||||
badalg,compliance_option_string());
|
||||
badalg, gnupg_compliance_option_string (opt.compliance));
|
||||
break;
|
||||
default:
|
||||
BUG();
|
||||
|
@ -4072,7 +4072,8 @@ main (int argc, char **argv)
|
|||
" with --s2k-mode 0\n"));
|
||||
else if(PGP6 || PGP7)
|
||||
log_error(_("you cannot use --symmetric --encrypt"
|
||||
" while in %s mode\n"),compliance_option_string());
|
||||
" while in %s mode\n"),
|
||||
gnupg_compliance_option_string (opt.compliance));
|
||||
else
|
||||
{
|
||||
if( (rc = encrypt_crypt (ctrl, -1, fname, remusr, 1, NULL, -1)) )
|
||||
|
@ -4132,7 +4133,8 @@ main (int argc, char **argv)
|
|||
" with --s2k-mode 0\n"));
|
||||
else if(PGP6 || PGP7)
|
||||
log_error(_("you cannot use --symmetric --sign --encrypt"
|
||||
" while in %s mode\n"),compliance_option_string());
|
||||
" while in %s mode\n"),
|
||||
gnupg_compliance_option_string (opt.compliance));
|
||||
else
|
||||
{
|
||||
if( argc )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue