summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-07-30 15:49:12 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-07-30 15:49:12 +0000
commit5cbd203302570bc323a8532a390b7163e041c737 (patch)
treeaf8320f32c5347409819c908c2f1fd7d90df6183 /apps
parent592a207b94dadbd03f352e8f74133efc0a141e3d (diff)
Initial support for alternative CRL issuing certificates.
Allow inibit any policy flag to be set in apps.
Diffstat (limited to 'apps')
-rw-r--r--apps/apps.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/apps.c b/apps/apps.c
index 926edd0e9e..43eae05dec 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -2233,6 +2233,8 @@ int args_verify(char ***pargs, int *pargc,
flags |= X509_V_FLAG_POLICY_CHECK;
else if (!strcmp(arg, "-explicit_policy"))
flags |= X509_V_FLAG_EXPLICIT_POLICY;
+ else if (!strcmp(arg, "-inhibit_any"))
+ flags |= X509_V_FLAG_INHIBIT_ANY;
else if (!strcmp(arg, "-x509_strict"))
flags |= X509_V_FLAG_X509_STRICT;
else if (!strcmp(arg, "-policy_print"))