summaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-04-21 17:44:45 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-04-21 17:44:45 +0000
commitd943e3724162cb7668b90a34f689e7c2b89ebc64 (patch)
tree37e3bf1f679e0383ab2a974c8a34c1d069a04560 /crypto/x509v3/v3_lib.c
parent59b82e4f6914d58a1b242ec0ef821ffc3bf785b5 (diff)
Suppport for CRL distribution points extension. Also document some of
this stuff.
Diffstat (limited to 'crypto/x509v3/v3_lib.c')
-rw-r--r--crypto/x509v3/v3_lib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_lib.c b/crypto/x509v3/v3_lib.c
index 55b807c1c8..f71e65604a 100644
--- a/crypto/x509v3/v3_lib.c
+++ b/crypto/x509v3/v3_lib.c
@@ -142,7 +142,7 @@ extern X509V3_EXT_METHOD v3_bcons, v3_nscert, v3_key_usage, v3_ext_ku;
extern X509V3_EXT_METHOD v3_pkey_usage_period, v3_sxnet;
extern X509V3_EXT_METHOD v3_ns_ia5_list[], v3_alt[], v3_skey_id, v3_akey_id;
-extern X509V3_EXT_METHOD v3_crl_num, v3_crl_reason, v3_cpols;
+extern X509V3_EXT_METHOD v3_crl_num, v3_crl_reason, v3_cpols, v3_crld;
int X509V3_add_standard_extensions(void)
{
@@ -159,6 +159,7 @@ int X509V3_add_standard_extensions(void)
X509V3_EXT_add(&v3_sxnet);
X509V3_EXT_add(&v3_crl_reason);
X509V3_EXT_add(&v3_cpols);
+ X509V3_EXT_add(&v3_crld);
return 1;
}