From 9e60d35ac1ade619b0d44538f7f50f62c1514194 Mon Sep 17 00:00:00 2001 From: guenther <> Date: Sat, 19 Apr 2014 08:52:32 +0000 Subject: More KNF and style consistency tweaks --- src/lib/libssl/t1_meth.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/lib/libssl/t1_meth.c') diff --git a/src/lib/libssl/t1_meth.c b/src/lib/libssl/t1_meth.c index ab2d789e59..cf62fe5c3d 100644 --- a/src/lib/libssl/t1_meth.c +++ b/src/lib/libssl/t1_meth.c @@ -60,16 +60,16 @@ #include #include "ssl_locl.h" -static const SSL_METHOD -*tls1_get_method(int ver) +static const SSL_METHOD * +tls1_get_method(int ver) { if (ver == TLS1_2_VERSION) - return TLSv1_2_method(); + return (TLSv1_2_method()); if (ver == TLS1_1_VERSION) - return TLSv1_1_method(); + return (TLSv1_1_method()); if (ver == TLS1_VERSION) - return TLSv1_method(); - return NULL; + return (TLSv1_method()); + return (NULL); } IMPLEMENT_tls_meth_func(TLS1_2_VERSION, TLSv1_2_method, -- cgit v1.2.3-55-g6feb