summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libcrypto/asn1/x_crl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/x_crl.c b/src/lib/libcrypto/asn1/x_crl.c
index 55faeda784..7ad8350f3d 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.47 2025/02/27 20:12:25 tb Exp $ */ 1/* $OpenBSD: x_crl.c,v 1.48 2025/02/27 20:13:41 tb 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 *
@@ -110,7 +110,7 @@ X509_REVOKED_cmp(const X509_REVOKED * const *a, const X509_REVOKED * const *b)
110 * reordering of the revoked field. 110 * reordering of the revoked field.
111 */ 111 */
112static int 112static int
113crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg) 113crl_info_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg)
114{ 114{
115 X509_CRL_INFO *a = (X509_CRL_INFO *)*pval; 115 X509_CRL_INFO *a = (X509_CRL_INFO *)*pval;
116 116
@@ -130,7 +130,7 @@ crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg)
130 130
131static const ASN1_AUX X509_CRL_INFO_aux = { 131static const ASN1_AUX X509_CRL_INFO_aux = {
132 .flags = ASN1_AFLG_ENCODING, 132 .flags = ASN1_AFLG_ENCODING,
133 .asn1_cb = crl_inf_cb, 133 .asn1_cb = crl_info_cb,
134 .enc_offset = offsetof(X509_CRL_INFO, enc), 134 .enc_offset = offsetof(X509_CRL_INFO, enc),
135}; 135};
136static const ASN1_TEMPLATE X509_CRL_INFO_seq_tt[] = { 136static const ASN1_TEMPLATE X509_CRL_INFO_seq_tt[] = {