summaryrefslogtreecommitdiff
path: root/lib/libssl/d1_clnt.c
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-04-19 08:52:33 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-04-19 08:52:33 +0000
commita741b41b219682ab8844f1d8339d625d52264d19 (patch)
tree0cf738e6ba24d3d9932ddf19fe534095af29ef9f /lib/libssl/d1_clnt.c
parent258d452e925eea9fbd0a6b764407f6b32bd8b733 (diff)
More KNF and style consistency tweaks
Diffstat (limited to 'lib/libssl/d1_clnt.c')
-rw-r--r--lib/libssl/d1_clnt.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libssl/d1_clnt.c b/lib/libssl/d1_clnt.c
index b919baf7faa..6bceeea55b1 100644
--- a/lib/libssl/d1_clnt.c
+++ b/lib/libssl/d1_clnt.c
@@ -131,13 +131,12 @@
static const SSL_METHOD *dtls1_get_client_method(int ver);
static int dtls1_get_hello_verify(SSL *s);
-static const SSL_METHOD
-*dtls1_get_client_method(int ver)
+static const SSL_METHOD *
+dtls1_get_client_method(int ver)
{
if (ver == DTLS1_VERSION || ver == DTLS1_BAD_VER)
return (DTLSv1_client_method());
- else
- return (NULL);
+ return (NULL);
}
IMPLEMENT_dtls1_meth_func(DTLSv1_client_method,