diff options
author | Daniel Bevenius <daniel.bevenius@gmail.com> | 2017-12-17 22:04:48 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2017-12-17 22:04:48 +0100 |
commit | b4ff66223b53ad9d2f5b4efd75bf8d52cc59c8dd (patch) | |
tree | fda5a73b22f6001cf68349687c59da6711b9b278 /ssl | |
parent | Fix invalid function type casts. (diff) | |
download | openssl-b4ff66223b53ad9d2f5b4efd75bf8d52cc59c8dd.tar.xz openssl-b4ff66223b53ad9d2f5b4efd75bf8d52cc59c8dd.zip |
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)
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/bio_ssl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ssl/bio_ssl.c b/ssl/bio_ssl.c index ccc0c769c5..d1876d8b8c 100644 --- a/ssl/bio_ssl.c +++ b/ssl/bio_ssl.c @@ -37,11 +37,11 @@ static const BIO_METHOD methods_sslp = { BIO_TYPE_SSL, "ssl", ssl_write, - NULL, + NULL, /* ssl_write_old, */ ssl_read, - NULL, + NULL, /* ssl_read_old, */ ssl_puts, - NULL, /* ssl_gets, */ + NULL, /* ssl_gets, */ ssl_ctrl, ssl_new, ssl_free, |