diff options
Diffstat (limited to 'src/lib/libcrypto/asn1/x_crl.c')
-rw-r--r-- | src/lib/libcrypto/asn1/x_crl.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/x_crl.c b/src/lib/libcrypto/asn1/x_crl.c index 0e6047db0b..4b19d756d0 100644 --- a/src/lib/libcrypto/asn1/x_crl.c +++ b/src/lib/libcrypto/asn1/x_crl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x_crl.c,v 1.44 2024/04/09 13:55:02 beck Exp $ */ | 1 | /* $OpenBSD: x_crl.c,v 1.45 2024/07/08 14:48:49 beck Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -99,6 +99,7 @@ const ASN1_ITEM X509_REVOKED_it = { | |||
99 | .size = sizeof(X509_REVOKED), | 99 | .size = sizeof(X509_REVOKED), |
100 | .sname = "X509_REVOKED", | 100 | .sname = "X509_REVOKED", |
101 | }; | 101 | }; |
102 | LCRYPTO_ALIAS(X509_REVOKED_it); | ||
102 | 103 | ||
103 | /* The X509_CRL_INFO structure needs a bit of customisation. | 104 | /* The X509_CRL_INFO structure needs a bit of customisation. |
104 | * Since we cache the original encoding the signature wont be affected by | 105 | * Since we cache the original encoding the signature wont be affected by |
@@ -179,6 +180,7 @@ const ASN1_ITEM X509_CRL_INFO_it = { | |||
179 | .size = sizeof(X509_CRL_INFO), | 180 | .size = sizeof(X509_CRL_INFO), |
180 | .sname = "X509_CRL_INFO", | 181 | .sname = "X509_CRL_INFO", |
181 | }; | 182 | }; |
183 | LCRYPTO_ALIAS(X509_CRL_INFO_it); | ||
182 | 184 | ||
183 | /* Set CRL entry issuer according to CRL certificate issuer extension. | 185 | /* Set CRL entry issuer according to CRL certificate issuer extension. |
184 | * Check for unhandled critical CRL entry extensions. | 186 | * Check for unhandled critical CRL entry extensions. |
@@ -412,6 +414,7 @@ const ASN1_ITEM X509_CRL_it = { | |||
412 | .size = sizeof(X509_CRL), | 414 | .size = sizeof(X509_CRL), |
413 | .sname = "X509_CRL", | 415 | .sname = "X509_CRL", |
414 | }; | 416 | }; |
417 | LCRYPTO_ALIAS(X509_CRL_it); | ||
415 | 418 | ||
416 | 419 | ||
417 | X509_REVOKED * | 420 | X509_REVOKED * |