summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2017-12-08 08:20:10 +0100
committerRichard Levitte <levitte@openssl.org>2017-12-10 10:40:05 +0100
commitb6f28b1243fdcddc872cb170ea87ab2138b5c388 (patch)
tree07fccab8ab9420c8114040759cadb2a486ebfe8b /ssl
parenta836f9fa951e33a5186e2421413de0b50ed2233a (diff)
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) (cherry picked from commit 27ab91951c96364351f1ea0652dbf14622440345)
Diffstat (limited to 'ssl')
-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 5322c03646..7388db1797 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,
ssl_read,
ssl_puts,