summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-09-01 15:15:16 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-09-01 15:15:16 +0000
commitd43c4497ce1611373c3a3e5b433dfde4907d1a69 (patch)
tree412a0fe67c6f39893614919e58dbcae0a7a422ae /apps
parent4b96839f069a2c9fef3d1feffca2880361181544 (diff)
Initial support for delta CRLs. If "use deltas" flag is set attempt to find
a delta CRL in addition to a full CRL. Check and search delta in addition to the base.
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 7a1b6f7ca4..548ae4c143 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -2241,6 +2241,8 @@ int args_verify(char ***pargs, int *pargc,
flags |= X509_V_FLAG_X509_STRICT;
else if (!strcmp(arg, "-extended_crl"))
flags |= X509_V_FLAG_EXTENDED_CRL_SUPPORT;
+ else if (!strcmp(arg, "-use_deltas"))
+ flags |= X509_V_FLAG_USE_DELTAS;
else if (!strcmp(arg, "-policy_print"))
flags |= X509_V_FLAG_NOTIFY_POLICY;
else