summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/c_all.c
diff options
context:
space:
mode:
authorbeck <>2023-07-07 19:37:54 +0000
committerbeck <>2023-07-07 19:37:54 +0000
commit8d42940c1d19bb9bd4ce45580f18a59069225432 (patch)
treeb1fe16b4625998f0f024f4d3eef5d59a3e905a9a /src/lib/libcrypto/evp/c_all.c
parent1c5e77a1d6f97589e2bca622f3313c1418f9a535 (diff)
downloadopenbsd-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.c6
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}
254LCRYPTO_ALIAS(OpenSSL_add_all_ciphers);
255 254
256static void 255static void
257OpenSSL_add_all_digests_internal(void) 256OpenSSL_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}
317LCRYPTO_ALIAS(OpenSSL_add_all_digests);
318 316
319void 317void
320OPENSSL_add_all_algorithms_noconf(void) 318OPENSSL_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}
326LCRYPTO_ALIAS(OPENSSL_add_all_algorithms_noconf);
327 324
328void 325void
329OPENSSL_add_all_algorithms_conf(void) 326OPENSSL_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}
334LCRYPTO_ALIAS(OPENSSL_add_all_algorithms_conf);