diff options
author | beck <> | 2024-07-08 14:47:44 +0000 |
---|---|---|
committer | beck <> | 2024-07-08 14:47:44 +0000 |
commit | 751ca4542fedfb2706bb63acee88e221a6aa110a (patch) | |
tree | 9c734b517dc0abfc0fb1c6750f545cc495d6bb7f /src/lib/libcrypto/x509/x509_ncons.c | |
parent | 6b813c7c12b81e1e330f8870fe4e5db7abb1db55 (diff) | |
download | openbsd-751ca4542fedfb2706bb63acee88e221a6aa110a.tar.gz openbsd-751ca4542fedfb2706bb63acee88e221a6aa110a.tar.bz2 openbsd-751ca4542fedfb2706bb63acee88e221a6aa110a.zip |
Hide global _it variables in x509v3.h
ok tb@
Diffstat (limited to 'src/lib/libcrypto/x509/x509_ncons.c')
-rw-r--r-- | src/lib/libcrypto/x509/x509_ncons.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509_ncons.c b/src/lib/libcrypto/x509/x509_ncons.c index 159e3c2563..f8c63886a4 100644 --- a/src/lib/libcrypto/x509/x509_ncons.c +++ b/src/lib/libcrypto/x509/x509_ncons.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_ncons.c,v 1.9 2023/02/16 08:38:17 tb Exp $ */ | 1 | /* $OpenBSD: x509_ncons.c,v 1.10 2024/07/08 14:47:44 beck 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. | 3 | * project. |
4 | */ | 4 | */ |
@@ -131,6 +131,7 @@ const ASN1_ITEM GENERAL_SUBTREE_it = { | |||
131 | .size = sizeof(GENERAL_SUBTREE), | 131 | .size = sizeof(GENERAL_SUBTREE), |
132 | .sname = "GENERAL_SUBTREE", | 132 | .sname = "GENERAL_SUBTREE", |
133 | }; | 133 | }; |
134 | LCRYPTO_ALIAS(GENERAL_SUBTREE_it); | ||
134 | 135 | ||
135 | static const ASN1_TEMPLATE NAME_CONSTRAINTS_seq_tt[] = { | 136 | static const ASN1_TEMPLATE NAME_CONSTRAINTS_seq_tt[] = { |
136 | { | 137 | { |
@@ -158,6 +159,7 @@ const ASN1_ITEM NAME_CONSTRAINTS_it = { | |||
158 | .size = sizeof(NAME_CONSTRAINTS), | 159 | .size = sizeof(NAME_CONSTRAINTS), |
159 | .sname = "NAME_CONSTRAINTS", | 160 | .sname = "NAME_CONSTRAINTS", |
160 | }; | 161 | }; |
162 | LCRYPTO_ALIAS(NAME_CONSTRAINTS_it); | ||
161 | 163 | ||
162 | 164 | ||
163 | GENERAL_SUBTREE * | 165 | GENERAL_SUBTREE * |