diff options
author | beck <> | 2023-07-07 19:37:54 +0000 |
---|---|---|
committer | beck <> | 2023-07-07 19:37:54 +0000 |
commit | 8d42940c1d19bb9bd4ce45580f18a59069225432 (patch) | |
tree | b1fe16b4625998f0f024f4d3eef5d59a3e905a9a /src/lib/libcrypto/asn1/asn1_item.c | |
parent | 1c5e77a1d6f97589e2bca622f3313c1418f9a535 (diff) | |
download | openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.tar.gz openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.tar.bz2 openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.zip |
Unbreak the namespace build after a broken mk.conf and tool misfire had
me aliasing symbols not in the headers I was procesing.
This unbreaks the namespace build so it will pass again
ok tb@
Diffstat (limited to 'src/lib/libcrypto/asn1/asn1_item.c')
-rw-r--r-- | src/lib/libcrypto/asn1/asn1_item.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/asn1/asn1_item.c b/src/lib/libcrypto/asn1/asn1_item.c index ba2f015070..4458ceb866 100644 --- a/src/lib/libcrypto/asn1/asn1_item.c +++ b/src/lib/libcrypto/asn1/asn1_item.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: asn1_item.c,v 1.15 2023/07/05 21:23:36 beck Exp $ */ | 1 | /* $OpenBSD: asn1_item.c,v 1.16 2023/07/07 19:37:52 beck 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 | * |
@@ -138,7 +138,6 @@ ASN1_item_digest(const ASN1_ITEM *it, const EVP_MD *type, void *asn, | |||
138 | free(str); | 138 | free(str); |
139 | return (1); | 139 | return (1); |
140 | } | 140 | } |
141 | LCRYPTO_ALIAS(ASN1_item_digest); | ||
142 | 141 | ||
143 | /* | 142 | /* |
144 | * ASN1_ITEM version of ASN1_dup(): follows the same model except there's no | 143 | * ASN1_ITEM version of ASN1_dup(): follows the same model except there's no |
@@ -230,7 +229,6 @@ ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2, | |||
230 | } | 229 | } |
231 | return ASN1_item_sign_ctx(it, algor1, algor2, signature, asn, &ctx); | 230 | return ASN1_item_sign_ctx(it, algor1, algor2, signature, asn, &ctx); |
232 | } | 231 | } |
233 | LCRYPTO_ALIAS(ASN1_item_sign); | ||
234 | 232 | ||
235 | int | 233 | int |
236 | ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2, | 234 | ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2, |
@@ -340,7 +338,6 @@ ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2, | |||
340 | 338 | ||
341 | return ret; | 339 | return ret; |
342 | } | 340 | } |
343 | LCRYPTO_ALIAS(ASN1_item_sign_ctx); | ||
344 | 341 | ||
345 | int | 342 | int |
346 | ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *a, | 343 | ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *a, |
@@ -426,7 +423,6 @@ ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *a, | |||
426 | 423 | ||
427 | return ret; | 424 | return ret; |
428 | } | 425 | } |
429 | LCRYPTO_ALIAS(ASN1_item_verify); | ||
430 | 426 | ||
431 | #define HEADER_SIZE 8 | 427 | #define HEADER_SIZE 8 |
432 | #define ASN1_CHUNK_INITIAL_SIZE (16 * 1024) | 428 | #define ASN1_CHUNK_INITIAL_SIZE (16 * 1024) |