diff options
author | tb <> | 2025-02-27 20:13:41 +0000 |
---|---|---|
committer | tb <> | 2025-02-27 20:13:41 +0000 |
commit | 839431de11a461fd6a86b2b1f58bcc6084760fd0 (patch) | |
tree | 472ff8d9d4d38782cfc43ed8e15a1e252405c1d5 | |
parent | c9dd1ec9e9debb1a20fcec9f80a0f000eca8df8e (diff) | |
download | openbsd-839431de11a461fd6a86b2b1f58bcc6084760fd0.tar.gz openbsd-839431de11a461fd6a86b2b1f58bcc6084760fd0.tar.bz2 openbsd-839431de11a461fd6a86b2b1f58bcc6084760fd0.zip |
Rename the crl_inf_cb() to crl_info_cb()
-rw-r--r-- | src/lib/libcrypto/asn1/x_crl.c | 6 |
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 | */ |
112 | static int | 112 | static int |
113 | crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg) | 113 | crl_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 | ||
131 | static const ASN1_AUX X509_CRL_INFO_aux = { | 131 | static 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 | }; |
136 | static const ASN1_TEMPLATE X509_CRL_INFO_seq_tt[] = { | 136 | static const ASN1_TEMPLATE X509_CRL_INFO_seq_tt[] = { |