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 /crypto/bio/bss_null.c | |
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 'crypto/bio/bss_null.c')
-rw-r--r-- | crypto/bio/bss_null.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bss_null.c b/crypto/bio/bss_null.c index 13982c0851..df3a9214f9 100644 --- a/crypto/bio/bss_null.c +++ b/crypto/bio/bss_null.c @@ -33,7 +33,7 @@ static const BIO_METHOD null_method = { null_ctrl, null_new, null_free, - NULL, + NULL, /* null_callback_ctrl */ }; const BIO_METHOD *BIO_s_null(void) |