From: Matt Caswell Date: Tue, 8 Nov 2016 13:52:30 +0000 (+0000) Subject: Fix zlib BIO_METHOD for latest BIO_METHOD structure changes X-Git-Tag: OpenSSL_1_1_1-pre1~3162 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=513d76f495a256daf5c70f3c96f8fddc84c84c6a;ds=sidebyside Fix zlib BIO_METHOD for latest BIO_METHOD structure changes Reviewed-by: Richard Levitte --- diff --git a/crypto/comp/c_zlib.c b/crypto/comp/c_zlib.c index 2f38c2e94c..f0197b8bab 100644 --- a/crypto/comp/c_zlib.c +++ b/crypto/comp/c_zlib.c @@ -297,7 +297,11 @@ static long bio_zlib_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp); static const BIO_METHOD bio_meth_zlib = { BIO_TYPE_COMP, "zlib", + /* TODO: Convert to new style write function */ + bwrite_conv, bio_zlib_write, + /* TODO: Convert to new style read function */ + bread_conv, bio_zlib_read, NULL, NULL,