diff options
Diffstat (limited to 'src/lib/libcrypto/bio/bf_buff.c')
-rw-r--r-- | src/lib/libcrypto/bio/bf_buff.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/bio/bf_buff.c b/src/lib/libcrypto/bio/bf_buff.c index 42414bb51a..aa079c5f9e 100644 --- a/src/lib/libcrypto/bio/bf_buff.c +++ b/src/lib/libcrypto/bio/bf_buff.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bf_buff.c,v 1.26 2022/01/07 09:02:17 tb Exp $ */ | 1 | /* $OpenBSD: bf_buff.c,v 1.27 2022/01/14 08:40:57 tb 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 | * |
@@ -72,7 +72,7 @@ static int buffer_gets(BIO *h, char *str, int size); | |||
72 | static long buffer_ctrl(BIO *h, int cmd, long arg1, void *arg2); | 72 | static long buffer_ctrl(BIO *h, int cmd, long arg1, void *arg2); |
73 | static int buffer_new(BIO *h); | 73 | static int buffer_new(BIO *h); |
74 | static int buffer_free(BIO *data); | 74 | static int buffer_free(BIO *data); |
75 | static long buffer_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp); | 75 | static long buffer_callback_ctrl(BIO *h, int cmd, BIO_info_cb *fp); |
76 | #define DEFAULT_BUFFER_SIZE 4096 | 76 | #define DEFAULT_BUFFER_SIZE 4096 |
77 | 77 | ||
78 | static const BIO_METHOD methods_buffer = { | 78 | static const BIO_METHOD methods_buffer = { |
@@ -452,7 +452,7 @@ malloc_error: | |||
452 | } | 452 | } |
453 | 453 | ||
454 | static long | 454 | static long |
455 | buffer_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) | 455 | buffer_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) |
456 | { | 456 | { |
457 | long ret = 1; | 457 | long ret = 1; |
458 | 458 | ||