summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-12-04 20:07:16 +0000
committertb <>2024-12-04 20:07:16 +0000
commit350e55c704d5fb7a9eac6ee2cdc0ae843463eca7 (patch)
tree5629bd5a7f10efaba24a588ee9abe7ddf42c8e51 /src
parenta4d744c17d44ef3b5e9e9dc14503acbd25bd3c54 (diff)
downloadopenbsd-350e55c704d5fb7a9eac6ee2cdc0ae843463eca7.tar.gz
openbsd-350e55c704d5fb7a9eac6ee2cdc0ae843463eca7.tar.bz2
openbsd-350e55c704d5fb7a9eac6ee2cdc0ae843463eca7.zip
Use ASIdentifiers rather than struct ASIdentifiers_st
This matches the other members of X509 and is what's used everywhere else. ok miod
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/x509/x509_local.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509/x509_local.h b/src/lib/libcrypto/x509/x509_local.h
index bb64729b3c..e4d4b4ddd0 100644
--- a/src/lib/libcrypto/x509/x509_local.h
+++ b/src/lib/libcrypto/x509/x509_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_local.h,v 1.32 2024/08/31 10:46:40 tb Exp $ */ 1/* $OpenBSD: x509_local.h,v 1.33 2024/12/04 20:07:16 tb 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 2013. 3 * project 2013.
4 */ 4 */
@@ -199,7 +199,7 @@ struct x509_st {
199 NAME_CONSTRAINTS *nc; 199 NAME_CONSTRAINTS *nc;
200#ifndef OPENSSL_NO_RFC3779 200#ifndef OPENSSL_NO_RFC3779
201 STACK_OF(IPAddressFamily) *rfc3779_addr; 201 STACK_OF(IPAddressFamily) *rfc3779_addr;
202 struct ASIdentifiers_st *rfc3779_asid; 202 ASIdentifiers *rfc3779_asid;
203#endif 203#endif
204 unsigned char hash[X509_CERT_HASH_LEN]; 204 unsigned char hash[X509_CERT_HASH_LEN];
205 X509_CERT_AUX *aux; 205 X509_CERT_AUX *aux;