diff options
Diffstat (limited to 'test/testutil')
-rw-r--r-- | test/testutil/tap_bio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testutil/tap_bio.c b/test/testutil/tap_bio.c index f78dfb81d9..a6c903b5ae 100644 --- a/test/testutil/tap_bio.c +++ b/test/testutil/tap_bio.c @@ -18,7 +18,7 @@ static int tap_gets(BIO *b, char *str, int size); static long tap_ctrl(BIO *b, int cmd, long arg1, void *arg2); static int tap_new(BIO *b); static int tap_free(BIO *b); -static long tap_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp); +static long tap_callback_ctrl(BIO *h, int cmd, BIO_info_cb *fp); const BIO_METHOD *BIO_f_tap(void) { @@ -134,7 +134,7 @@ static long tap_ctrl(BIO *b, int cmd, long num, void *ptr) return BIO_ctrl(next, cmd, num, ptr); } -static long tap_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) +static long tap_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) { return BIO_callback_ctrl(BIO_next(b), cmd, fp); } |