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 | |
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')
-rw-r--r-- | src/lib/libcrypto/bio/bio_lib.c | 3 | ||||
-rw-r--r-- | src/lib/libcrypto/bio/bss_bio.c | 3 |
2 files changed, 4 insertions, 2 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) |
diff --git a/src/lib/libcrypto/bio/bss_bio.c b/src/lib/libcrypto/bio/bss_bio.c index 9a3215a7d4..39d8d1e46c 100644 --- a/src/lib/libcrypto/bio/bss_bio.c +++ b/src/lib/libcrypto/bio/bss_bio.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bss_bio.c,v 1.28 2023/07/28 10:13:50 tb Exp $ */ | 1 | /* $OpenBSD: bss_bio.c,v 1.29 2024/07/09 06:14:59 beck Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -617,6 +617,7 @@ BIO_new_bio_pair(BIO **bio1_p, size_t writebuf1, BIO **bio2_p, size_t writebuf2) | |||
617 | *bio2_p = bio2; | 617 | *bio2_p = bio2; |
618 | return ret; | 618 | return ret; |
619 | } | 619 | } |
620 | LCRYPTO_ALIAS(BIO_new_bio_pair); | ||
620 | 621 | ||
621 | size_t | 622 | size_t |
622 | BIO_ctrl_get_write_guarantee(BIO *bio) | 623 | BIO_ctrl_get_write_guarantee(BIO *bio) |