summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2017-12-18 07:04:48 +1000
committerPauli <paul.dale@oracle.com>2017-12-18 07:20:14 +1000
commit7ab60fe24d6a557ec1f9501ce94ca43a8b9f6e52 (patch)
treec6d953856497d7c5d4e75f3bcb361055eff959c0 /ssl
parent5200dbb73c7cf63481c563025ad4d67b71e306d2 (diff)
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 <paul.dale@oracle.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4881) (cherry picked from commit b4ff66223b53ad9d2f5b4efd75bf8d52cc59c8dd)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/bio_ssl.c4
1 files changed, 2 insertions, 2 deletions
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,