From b4ff66223b53ad9d2f5b4efd75bf8d52cc59c8dd Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 18 Dec 2017 07:04:48 +1000 Subject: Add comments to NULL func ptrs in bio_method_st This commit adds comments to bio_method_st definitions where the function pointers are defined as NULL. Most of the structs have comments but some where missing and not all consitent. CLA: trivial Reviewed-by: Paul Dale Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/4881) --- crypto/comp/c_zlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/comp') diff --git a/crypto/comp/c_zlib.c b/crypto/comp/c_zlib.c index 5d82e15979..d688deee5f 100644 --- a/crypto/comp/c_zlib.c +++ b/crypto/comp/c_zlib.c @@ -302,8 +302,8 @@ static const BIO_METHOD bio_meth_zlib = { /* TODO: Convert to new style read function */ bread_conv, bio_zlib_read, - NULL, - NULL, + NULL, /* bio_zlib_puts, */ + NULL, /* bio_zlib_gets, */ bio_zlib_ctrl, bio_zlib_new, bio_zlib_free, -- cgit v1.2.1