diff options
Diffstat (limited to 'src/lib/libcrypto/bio')
-rw-r--r-- | src/lib/libcrypto/bio/b_dump.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/bio/bio_lib.c | 3 | ||||
-rw-r--r-- | src/lib/libcrypto/bio/bss_bio.c | 3 | ||||
-rw-r--r-- | src/lib/libcrypto/bio/bss_conn.c | 4 |
4 files changed, 4 insertions, 10 deletions
diff --git a/src/lib/libcrypto/bio/b_dump.c b/src/lib/libcrypto/bio/b_dump.c index 70bb9882f3..6a87ebd3a3 100644 --- a/src/lib/libcrypto/bio/b_dump.c +++ b/src/lib/libcrypto/bio/b_dump.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: b_dump.c,v 1.24 2023/07/05 21:23:37 beck Exp $ */ | 1 | /* $OpenBSD: b_dump.c,v 1.25 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 | * |
@@ -75,7 +75,6 @@ BIO_dump_cb(int (*cb)(const void *data, size_t len, void *u), | |||
75 | { | 75 | { |
76 | return BIO_dump_indent_cb(cb, u, s, len, 0); | 76 | return BIO_dump_indent_cb(cb, u, s, len, 0); |
77 | } | 77 | } |
78 | LCRYPTO_ALIAS(BIO_dump_cb); | ||
79 | 78 | ||
80 | int | 79 | int |
81 | BIO_dump_indent_cb(int (*cb)(const void *data, size_t len, void *u), | 80 | BIO_dump_indent_cb(int (*cb)(const void *data, size_t len, void *u), |
@@ -149,7 +148,6 @@ BIO_dump_indent_cb(int (*cb)(const void *data, size_t len, void *u), | |||
149 | #endif | 148 | #endif |
150 | return (ret); | 149 | return (ret); |
151 | } | 150 | } |
152 | LCRYPTO_ALIAS(BIO_dump_indent_cb); | ||
153 | 151 | ||
154 | static int | 152 | static int |
155 | write_fp(const void *data, size_t len, void *fp) | 153 | write_fp(const void *data, size_t len, void *fp) |
diff --git a/src/lib/libcrypto/bio/bio_lib.c b/src/lib/libcrypto/bio/bio_lib.c index 31127cb444..3dd5e17ed3 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.45 2023/07/05 21:23:37 beck Exp $ */ | 1 | /* $OpenBSD: bio_lib.c,v 1.46 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 | * |
@@ -873,7 +873,6 @@ BIO_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, | |||
873 | return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_BIO, argl, argp, | 873 | return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_BIO, argl, argp, |
874 | new_func, dup_func, free_func); | 874 | new_func, dup_func, free_func); |
875 | } | 875 | } |
876 | LCRYPTO_ALIAS(BIO_get_ex_new_index); | ||
877 | 876 | ||
878 | int | 877 | int |
879 | BIO_set_ex_data(BIO *bio, int idx, void *data) | 878 | 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 0de0b604b3..d4c03abda2 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.26 2023/07/05 21:23:37 beck Exp $ */ | 1 | /* $OpenBSD: bss_bio.c,v 1.27 2023/07/07 19:37:53 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 | * |
@@ -796,7 +796,6 @@ BIO_new_bio_pair(BIO **bio1_p, size_t writebuf1, BIO **bio2_p, size_t writebuf2) | |||
796 | *bio2_p = bio2; | 796 | *bio2_p = bio2; |
797 | return ret; | 797 | return ret; |
798 | } | 798 | } |
799 | LCRYPTO_ALIAS(BIO_new_bio_pair); | ||
800 | 799 | ||
801 | size_t | 800 | size_t |
802 | BIO_ctrl_get_write_guarantee(BIO *bio) | 801 | BIO_ctrl_get_write_guarantee(BIO *bio) |
diff --git a/src/lib/libcrypto/bio/bss_conn.c b/src/lib/libcrypto/bio/bss_conn.c index ded9c0be6d..427bd4b9ed 100644 --- a/src/lib/libcrypto/bio/bss_conn.c +++ b/src/lib/libcrypto/bio/bss_conn.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bss_conn.c,v 1.38 2023/07/05 21:23:37 beck Exp $ */ | 1 | /* $OpenBSD: bss_conn.c,v 1.39 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 | * |
@@ -309,7 +309,6 @@ BIO_CONNECT_new(void) | |||
309 | memset((char *)&ret->them, 0, sizeof(ret->them)); | 309 | memset((char *)&ret->them, 0, sizeof(ret->them)); |
310 | return (ret); | 310 | return (ret); |
311 | } | 311 | } |
312 | LCRYPTO_ALIAS(BIO_CONNECT_new); | ||
313 | 312 | ||
314 | void | 313 | void |
315 | BIO_CONNECT_free(BIO_CONNECT *a) | 314 | BIO_CONNECT_free(BIO_CONNECT *a) |
@@ -321,7 +320,6 @@ BIO_CONNECT_free(BIO_CONNECT *a) | |||
321 | free(a->param_port); | 320 | free(a->param_port); |
322 | free(a); | 321 | free(a); |
323 | } | 322 | } |
324 | LCRYPTO_ALIAS(BIO_CONNECT_free); | ||
325 | 323 | ||
326 | const BIO_METHOD * | 324 | const BIO_METHOD * |
327 | BIO_s_connect(void) | 325 | BIO_s_connect(void) |