diff options
Diffstat (limited to '')
-rw-r--r-- | g10/gpg.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -201,6 +201,7 @@ enum cmd_and_opt_values oWithWKDHash, oWithColons, oWithKeyData, + oWithKeyOrigin, oWithTofuInfo, oWithSigList, oWithSigCheck, @@ -785,6 +786,7 @@ static ARGPARSE_OPTS opts[] = { ARGPARSE_s_n (oWithKeygrip, "with-keygrip", "@"), ARGPARSE_s_n (oWithSecret, "with-secret", "@"), ARGPARSE_s_n (oWithWKDHash, "with-wkd-hash", "@"), + ARGPARSE_s_n (oWithKeyOrigin, "with-key-origin", "@"), ARGPARSE_s_s (oDisableCipherAlgo, "disable-cipher-algo", "@"), ARGPARSE_s_s (oDisablePubkeyAlgo, "disable-pubkey-algo", "@"), ARGPARSE_s_n (oAllowNonSelfsignedUID, "allow-non-selfsigned-uid", "@"), @@ -2733,6 +2735,10 @@ main (int argc, char **argv) opt.with_wkd_hash = 1; break; + case oWithKeyOrigin: + opt.with_key_origin = 1; + break; + case oSecretKeyring: /* Ignore this old option. */ break; |