aboutsummaryrefslogtreecommitdiffstats
path: root/g10/gpg.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2006-03-07 11:05:41 +0000
committerWerner Koch <[email protected]>2006-03-07 11:05:41 +0000
commit4aeb4d4b103ccd2e7cf56c8190bc0eb7c41f8e4a (patch)
tree7b962de7e8574bdf92d0bb765e0514fabbf1a727 /g10/gpg.c
parent* gpg.sgml: Document --auto-key-locate. (diff)
downloadgnupg-4aeb4d4b103ccd2e7cf56c8190bc0eb7c41f8e4a.tar.gz
gnupg-4aeb4d4b103ccd2e7cf56c8190bc0eb7c41f8e4a.zip
More tests added; make distcheck works
Diffstat (limited to '')
-rw-r--r--g10/gpg.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/g10/gpg.c b/g10/gpg.c
index 03440538f..074eb4e4a 100644
--- a/g10/gpg.c
+++ b/g10/gpg.c
@@ -362,6 +362,7 @@ enum cmd_and_opt_values
oNoRequireBacksigs,
oAutoKeyLocate,
oNoAutoKeyLocate,
+ oAllowMultisigVerification,
oNoop
};
@@ -699,6 +700,8 @@ static ARGPARSE_OPTS opts[] = {
#if defined(ENABLE_CARD_SUPPORT) && defined(HAVE_LIBUSB)
{ oDebugCCIDDriver, "debug-ccid-driver", 0, "@"},
#endif
+ { oAllowMultisigVerification, "allow-multisig-verification", 0, "@"},
+
/* These two are aliases to help users of the PGP command line
product use gpg with minimal pain. Many commands are common
already as they seem to have borrowed commands from us. Now
@@ -2669,6 +2672,10 @@ main (int argc, char **argv )
release_akl();
break;
+ case oAllowMultisigVerification:
+ opt.allow_multisig_verification = 1;
+ break;
+
case oNoop: break;
default : pargs.err = configfp? 1:2; break;