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