diff options
| author | tb <> | 2024-04-15 15:52:01 +0000 |
|---|---|---|
| committer | tb <> | 2024-04-15 15:52:01 +0000 |
| commit | 618ac6b71539e63e174c458b65bd18a06f102173 (patch) | |
| tree | f727566194e5d48cc4285e3c914d7be2ad3d37cf /src/lib/libcrypto/asn1 | |
| parent | eaec6fe55de5b154c7834985bf4beb20a123e220 (diff) | |
| download | openbsd-618ac6b71539e63e174c458b65bd18a06f102173.tar.gz openbsd-618ac6b71539e63e174c458b65bd18a06f102173.tar.bz2 openbsd-618ac6b71539e63e174c458b65bd18a06f102173.zip | |
X509_NAME_ENTRIES_it and X509_NAME_INTERNAL_it go internal
It's always good to see something called internal in the public API.
ok jsing
Diffstat (limited to 'src/lib/libcrypto/asn1')
| -rw-r--r-- | src/lib/libcrypto/asn1/x_name.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/x_name.c b/src/lib/libcrypto/asn1/x_name.c index 5124ad3b25..f7d28e86b1 100644 --- a/src/lib/libcrypto/asn1/x_name.c +++ b/src/lib/libcrypto/asn1/x_name.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: x_name.c,v 1.42 2024/04/09 13:55:02 beck Exp $ */ | 1 | /* $OpenBSD: x_name.c,v 1.43 2024/04/15 15:52:01 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 | * |
| @@ -159,7 +159,7 @@ static const ASN1_TEMPLATE X509_NAME_ENTRIES_item_tt = { | |||
| 159 | .item = &X509_NAME_ENTRY_it, | 159 | .item = &X509_NAME_ENTRY_it, |
| 160 | }; | 160 | }; |
| 161 | 161 | ||
| 162 | const ASN1_ITEM X509_NAME_ENTRIES_it = { | 162 | static const ASN1_ITEM X509_NAME_ENTRIES_it = { |
| 163 | .itype = ASN1_ITYPE_PRIMITIVE, | 163 | .itype = ASN1_ITYPE_PRIMITIVE, |
| 164 | .utype = -1, | 164 | .utype = -1, |
| 165 | .templates = &X509_NAME_ENTRIES_item_tt, | 165 | .templates = &X509_NAME_ENTRIES_item_tt, |
| @@ -177,7 +177,7 @@ static const ASN1_TEMPLATE X509_NAME_INTERNAL_item_tt = { | |||
| 177 | .item = &X509_NAME_ENTRIES_it, | 177 | .item = &X509_NAME_ENTRIES_it, |
| 178 | }; | 178 | }; |
| 179 | 179 | ||
| 180 | const ASN1_ITEM X509_NAME_INTERNAL_it = { | 180 | static const ASN1_ITEM X509_NAME_INTERNAL_it = { |
| 181 | .itype = ASN1_ITYPE_PRIMITIVE, | 181 | .itype = ASN1_ITYPE_PRIMITIVE, |
| 182 | .utype = -1, | 182 | .utype = -1, |
| 183 | .templates = &X509_NAME_INTERNAL_item_tt, | 183 | .templates = &X509_NAME_INTERNAL_item_tt, |
