summaryrefslogtreecommitdiff
path: root/ssl/bio_ssl.c
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2017-12-08 08:20:10 +0100
committerAndy Polyakov <appro@openssl.org>2017-12-09 21:27:29 +0100
commit27ab91951c96364351f1ea0652dbf14622440345 (patch)
tree53501e2f5f183b94d9ad2ea80e9f3e87f8875806 /ssl/bio_ssl.c
parent6aff543b9bf14bdac7f5385a9e56b8785b30f6d8 (diff)
downloadopenssl-new-27ab91951c96364351f1ea0652dbf14622440345.tar.gz
Make BIO_METHOD struct definitions consistent
I noticed that some of the BIO_METHOD structs are placing the name on the same line as the type and some don't. This commit places the name on a separate line for consistency (which looks like what the majority do) CLA: trivial Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4878)
Diffstat (limited to 'ssl/bio_ssl.c')
-rw-r--r--ssl/bio_ssl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/bio_ssl.c b/ssl/bio_ssl.c
index 722d9420e3..5516260409 100644
--- a/ssl/bio_ssl.c
+++ b/ssl/bio_ssl.c
@@ -34,7 +34,8 @@ typedef struct bio_ssl_st {
} BIO_SSL;
static const BIO_METHOD methods_sslp = {
- BIO_TYPE_SSL, "ssl",
+ BIO_TYPE_SSL,
+ "ssl",
ssl_write,
NULL,
ssl_read,