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_asid.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_asid.c')
-rw-r--r-- | src/lib/libcrypto/x509/x509_asid.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509_asid.c b/src/lib/libcrypto/x509/x509_asid.c index 2fda58c3fa..e3af673202 100644 --- a/src/lib/libcrypto/x509/x509_asid.c +++ b/src/lib/libcrypto/x509/x509_asid.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_asid.c,v 1.43 2024/02/20 14:58:16 tb Exp $ */ | 1 | /* $OpenBSD: x509_asid.c,v 1.44 2024/07/08 14:47:44 beck Exp $ */ |
2 | /* | 2 | /* |
3 | * Contributed to the OpenSSL Project by the American Registry for | 3 | * Contributed to the OpenSSL Project by the American Registry for |
4 | * Internet Numbers ("ARIN"). | 4 | * Internet Numbers ("ARIN"). |
@@ -102,6 +102,7 @@ const ASN1_ITEM ASRange_it = { | |||
102 | .size = sizeof(ASRange), | 102 | .size = sizeof(ASRange), |
103 | .sname = "ASRange", | 103 | .sname = "ASRange", |
104 | }; | 104 | }; |
105 | LCRYPTO_ALIAS(ASRange_it); | ||
105 | 106 | ||
106 | static const ASN1_TEMPLATE ASIdOrRange_ch_tt[] = { | 107 | static const ASN1_TEMPLATE ASIdOrRange_ch_tt[] = { |
107 | { | 108 | { |
@@ -129,6 +130,7 @@ const ASN1_ITEM ASIdOrRange_it = { | |||
129 | .size = sizeof(ASIdOrRange), | 130 | .size = sizeof(ASIdOrRange), |
130 | .sname = "ASIdOrRange", | 131 | .sname = "ASIdOrRange", |
131 | }; | 132 | }; |
133 | LCRYPTO_ALIAS(ASIdOrRange_it); | ||
132 | 134 | ||
133 | static const ASN1_TEMPLATE ASIdentifierChoice_ch_tt[] = { | 135 | static const ASN1_TEMPLATE ASIdentifierChoice_ch_tt[] = { |
134 | { | 136 | { |
@@ -156,6 +158,7 @@ const ASN1_ITEM ASIdentifierChoice_it = { | |||
156 | .size = sizeof(ASIdentifierChoice), | 158 | .size = sizeof(ASIdentifierChoice), |
157 | .sname = "ASIdentifierChoice", | 159 | .sname = "ASIdentifierChoice", |
158 | }; | 160 | }; |
161 | LCRYPTO_ALIAS(ASIdentifierChoice_it); | ||
159 | 162 | ||
160 | static const ASN1_TEMPLATE ASIdentifiers_seq_tt[] = { | 163 | static const ASN1_TEMPLATE ASIdentifiers_seq_tt[] = { |
161 | { | 164 | { |
@@ -183,6 +186,7 @@ const ASN1_ITEM ASIdentifiers_it = { | |||
183 | .size = sizeof(ASIdentifiers), | 186 | .size = sizeof(ASIdentifiers), |
184 | .sname = "ASIdentifiers", | 187 | .sname = "ASIdentifiers", |
185 | }; | 188 | }; |
189 | LCRYPTO_ALIAS(ASIdentifiers_it); | ||
186 | 190 | ||
187 | ASRange * | 191 | ASRange * |
188 | d2i_ASRange(ASRange **a, const unsigned char **in, long len) | 192 | d2i_ASRange(ASRange **a, const unsigned char **in, long len) |