From 7ab60fe24d6a557ec1f9501ce94ca43a8b9f6e52 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) (cherry picked from commit b4ff66223b53ad9d2f5b4efd75bf8d52cc59c8dd) --- ssl/bio_ssl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ssl') diff --git a/ssl/bio_ssl.c b/ssl/bio_ssl.c index 352c8a1321..97540e6c7c 100644 --- a/ssl/bio_ssl.c +++ b/ssl/bio_ssl.c @@ -1,5 +1,5 @@ /* - * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -39,7 +39,7 @@ static const BIO_METHOD methods_sslp = { ssl_write, ssl_read, ssl_puts, - NULL, /* ssl_gets, */ + NULL, /* ssl_gets, */ ssl_ctrl, ssl_new, ssl_free, -- cgit v1.2.3