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/evp/c_all.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/evp/c_all.c')
-rw-r--r-- | src/lib/libcrypto/evp/c_all.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/evp/c_all.c b/src/lib/libcrypto/evp/c_all.c index 5efcd5f237..10e35dd7ab 100644 --- a/src/lib/libcrypto/evp/c_all.c +++ b/src/lib/libcrypto/evp/c_all.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: c_all.c,v 1.30 2023/07/07 13:54:45 beck Exp $ */ | 1 | /* $OpenBSD: c_all.c,v 1.31 2023/07/07 19:37:53 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 | * |
@@ -251,7 +251,6 @@ OpenSSL_add_all_ciphers(void) | |||
251 | static pthread_once_t add_all_ciphers_once = PTHREAD_ONCE_INIT; | 251 | static pthread_once_t add_all_ciphers_once = PTHREAD_ONCE_INIT; |
252 | (void) pthread_once(&add_all_ciphers_once, OpenSSL_add_all_ciphers_internal); | 252 | (void) pthread_once(&add_all_ciphers_once, OpenSSL_add_all_ciphers_internal); |
253 | } | 253 | } |
254 | LCRYPTO_ALIAS(OpenSSL_add_all_ciphers); | ||
255 | 254 | ||
256 | static void | 255 | static void |
257 | OpenSSL_add_all_digests_internal(void) | 256 | OpenSSL_add_all_digests_internal(void) |
@@ -314,7 +313,6 @@ OpenSSL_add_all_digests(void) | |||
314 | static pthread_once_t add_all_digests_once = PTHREAD_ONCE_INIT; | 313 | static pthread_once_t add_all_digests_once = PTHREAD_ONCE_INIT; |
315 | (void) pthread_once(&add_all_digests_once, OpenSSL_add_all_digests_internal); | 314 | (void) pthread_once(&add_all_digests_once, OpenSSL_add_all_digests_internal); |
316 | } | 315 | } |
317 | LCRYPTO_ALIAS(OpenSSL_add_all_digests); | ||
318 | 316 | ||
319 | void | 317 | void |
320 | OPENSSL_add_all_algorithms_noconf(void) | 318 | OPENSSL_add_all_algorithms_noconf(void) |
@@ -323,7 +321,6 @@ OPENSSL_add_all_algorithms_noconf(void) | |||
323 | OpenSSL_add_all_ciphers(); | 321 | OpenSSL_add_all_ciphers(); |
324 | OpenSSL_add_all_digests(); | 322 | OpenSSL_add_all_digests(); |
325 | } | 323 | } |
326 | LCRYPTO_ALIAS(OPENSSL_add_all_algorithms_noconf); | ||
327 | 324 | ||
328 | void | 325 | void |
329 | OPENSSL_add_all_algorithms_conf(void) | 326 | OPENSSL_add_all_algorithms_conf(void) |
@@ -331,4 +328,3 @@ OPENSSL_add_all_algorithms_conf(void) | |||
331 | OPENSSL_add_all_algorithms_noconf(); | 328 | OPENSSL_add_all_algorithms_noconf(); |
332 | OPENSSL_config(NULL); | 329 | OPENSSL_config(NULL); |
333 | } | 330 | } |
334 | LCRYPTO_ALIAS(OPENSSL_add_all_algorithms_conf); | ||