mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
gpg: New option --proc-all-sigs
* g10/options.h (flags): Add proc_all_sigs. * g10/mainproc.c (check_sig_and_print): Do not stop signature checking if this new option is used. * g10/gpg.c (oProcAllSigs): New. (opts): Add "proc-all-sigs". (main): Set it. -- GnuPG-bug-id: 7261 Backported-from-master:1eb382fb1f
(cherry picked from commitcb739bb2a5
)
This commit is contained in:
parent
a891e55f15
commit
5276a1373c
5 changed files with 21 additions and 1 deletions
|
@ -438,6 +438,7 @@ enum cmd_and_opt_values
|
|||
oRequireCompliance,
|
||||
oCompatibilityFlags,
|
||||
oAddDesigRevoker,
|
||||
oProcAllSigs,
|
||||
|
||||
oNoop
|
||||
};
|
||||
|
@ -877,6 +878,7 @@ static ARGPARSE_OPTS opts[] = {
|
|||
|
||||
ARGPARSE_s_n (oBatch, "batch", "@"),
|
||||
ARGPARSE_s_n (oNoBatch, "no-batch", "@"),
|
||||
ARGPARSE_s_n (oProcAllSigs, "proc-all-sigs", "@"),
|
||||
ARGPARSE_s_n (oAnswerYes, "yes", "@"),
|
||||
ARGPARSE_s_n (oAnswerNo, "no", "@"),
|
||||
ARGPARSE_s_i (oStatusFD, "status-fd", "@"),
|
||||
|
@ -2713,6 +2715,10 @@ main (int argc, char **argv)
|
|||
nogreeting = 1;
|
||||
break;
|
||||
|
||||
case oProcAllSigs:
|
||||
opt.flags.proc_all_sigs = 1;
|
||||
break;
|
||||
|
||||
case oUseAgent: /* Dummy. */
|
||||
break;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue