diff options
Diffstat (limited to 'sm/gpgsm.c')
-rw-r--r-- | sm/gpgsm.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sm/gpgsm.c b/sm/gpgsm.c index 9d91cd9db..7b1b0d715 100644 --- a/sm/gpgsm.c +++ b/sm/gpgsm.c @@ -112,7 +112,7 @@ enum cmd_and_opt_values { oPolicyFile, oDisablePolicyChecks, oEnablePolicyChecks, - + oAutoIssuerKeyRetrieve, oTextmode, @@ -259,6 +259,9 @@ static ARGPARSE_OPTS opts[] = { N_("do not check certificate policies")}, { oEnablePolicyChecks, "enable-policy-checks", 0, "@"}, + { oAutoIssuerKeyRetrieve, "auto-issuer-key-retrieve", 0, + N_("fetch missing issuer certificates")}, + #if 0 { oDefRecipient, "default-recipient" ,2, N_("|NAME|use NAME as default recipient")}, @@ -809,7 +812,10 @@ main ( int argc, char **argv) case oEnablePolicyChecks: opt.no_policy_check = 0; break; - + + case oAutoIssuerKeyRetrieve: + opt.auto_issuer_key_retrieve = 1; + break; case oOutput: opt.outfile = pargs.r.ret_str; break; |