diff options
Diffstat (limited to 'src/lib/libcrypto/x509v3/v3_crld.c')
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_crld.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/x509v3/v3_crld.c b/src/lib/libcrypto/x509v3/v3_crld.c index a72d0ab500..b13bbc3501 100644 --- a/src/lib/libcrypto/x509v3/v3_crld.c +++ b/src/lib/libcrypto/x509v3/v3_crld.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: v3_crld.c,v 1.19 2015/07/29 16:13:48 jsing Exp $ */ | 1 | /* $OpenBSD: v3_crld.c,v 1.20 2016/12/30 15:54:49 jsing Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 1999. | 3 | * project 1999. |
4 | */ | 4 | */ |
@@ -73,7 +73,7 @@ static int i2r_crldp(const X509V3_EXT_METHOD *method, void *pcrldp, BIO *out, | |||
73 | const X509V3_EXT_METHOD v3_crld = { | 73 | const X509V3_EXT_METHOD v3_crld = { |
74 | .ext_nid = NID_crl_distribution_points, | 74 | .ext_nid = NID_crl_distribution_points, |
75 | .ext_flags = 0, | 75 | .ext_flags = 0, |
76 | .it = ASN1_ITEM_ref(CRL_DIST_POINTS), | 76 | .it = &CRL_DIST_POINTS_it, |
77 | .ext_new = NULL, | 77 | .ext_new = NULL, |
78 | .ext_free = NULL, | 78 | .ext_free = NULL, |
79 | .d2i = NULL, | 79 | .d2i = NULL, |
@@ -90,7 +90,7 @@ const X509V3_EXT_METHOD v3_crld = { | |||
90 | const X509V3_EXT_METHOD v3_freshest_crl = { | 90 | const X509V3_EXT_METHOD v3_freshest_crl = { |
91 | .ext_nid = NID_freshest_crl, | 91 | .ext_nid = NID_freshest_crl, |
92 | .ext_flags = 0, | 92 | .ext_flags = 0, |
93 | .it = ASN1_ITEM_ref(CRL_DIST_POINTS), | 93 | .it = &CRL_DIST_POINTS_it, |
94 | .ext_new = NULL, | 94 | .ext_new = NULL, |
95 | .ext_free = NULL, | 95 | .ext_free = NULL, |
96 | .d2i = NULL, | 96 | .d2i = NULL, |
@@ -642,7 +642,7 @@ static void *v2i_idp(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, | |||
642 | 642 | ||
643 | const X509V3_EXT_METHOD v3_idp = { | 643 | const X509V3_EXT_METHOD v3_idp = { |
644 | NID_issuing_distribution_point, X509V3_EXT_MULTILINE, | 644 | NID_issuing_distribution_point, X509V3_EXT_MULTILINE, |
645 | ASN1_ITEM_ref(ISSUING_DIST_POINT), | 645 | &ISSUING_DIST_POINT_it, |
646 | 0, 0, 0, 0, | 646 | 0, 0, 0, 0, |
647 | 0, 0, | 647 | 0, 0, |
648 | 0, | 648 | 0, |