diff options
author | beck <> | 2024-07-09 06:14:59 +0000 |
---|---|---|
committer | beck <> | 2024-07-09 06:14:59 +0000 |
commit | 84945a65ac541b86070cc7f7e8b44b4d0b1c2eba (patch) | |
tree | 6c999dc07618f4d12f9b2391276656df58eea9df /src/lib/libcrypto/bio/bio_lib.c | |
parent | e779c9960720550a81fa153d3e44a15528fcd683 (diff) | |
download | openbsd-84945a65ac541b86070cc7f7e8b44b4d0b1c2eba.tar.gz openbsd-84945a65ac541b86070cc7f7e8b44b4d0b1c2eba.tar.bz2 openbsd-84945a65ac541b86070cc7f7e8b44b4d0b1c2eba.zip |
Hide symbols for two missed public functions in bio.h
ok tb@
Diffstat (limited to 'src/lib/libcrypto/bio/bio_lib.c')
-rw-r--r-- | src/lib/libcrypto/bio/bio_lib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bio/bio_lib.c b/src/lib/libcrypto/bio/bio_lib.c index ba71539223..463d2ad23a 100644 --- a/src/lib/libcrypto/bio/bio_lib.c +++ b/src/lib/libcrypto/bio/bio_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bio_lib.c,v 1.53 2024/03/27 01:22:30 tb Exp $ */ | 1 | /* $OpenBSD: bio_lib.c,v 1.54 2024/07/09 06:14:59 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 | * |
@@ -851,6 +851,7 @@ BIO_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, | |||
851 | return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_BIO, argl, argp, | 851 | return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_BIO, argl, argp, |
852 | new_func, dup_func, free_func); | 852 | new_func, dup_func, free_func); |
853 | } | 853 | } |
854 | LCRYPTO_ALIAS(BIO_get_ex_new_index); | ||
854 | 855 | ||
855 | int | 856 | int |
856 | BIO_set_ex_data(BIO *bio, int idx, void *data) | 857 | BIO_set_ex_data(BIO *bio, int idx, void *data) |