diff options
author | Matt Caswell <matt@openssl.org> | 2016-11-08 14:52:30 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-11-08 14:58:10 +0100 |
commit | 513d76f495a256daf5c70f3c96f8fddc84c84c6a (patch) | |
tree | 9f25d2f6a481134f3679979f24b19fd3f361f07c /crypto/comp | |
parent | INSTALL: small typo (diff) | |
download | openssl-513d76f495a256daf5c70f3c96f8fddc84c84c6a.tar.xz openssl-513d76f495a256daf5c70f3c96f8fddc84c84c6a.zip |
Fix zlib BIO_METHOD for latest BIO_METHOD structure changes
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/comp')
-rw-r--r-- | crypto/comp/c_zlib.c | 4 |
1 files changed, 4 insertions, 0 deletions
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, |