diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-04-19 08:52:33 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-04-19 08:52:33 +0000 |
commit | a741b41b219682ab8844f1d8339d625d52264d19 (patch) | |
tree | 0cf738e6ba24d3d9932ddf19fe534095af29ef9f /lib/libssl/d1_srvr.c | |
parent | 258d452e925eea9fbd0a6b764407f6b32bd8b733 (diff) |
More KNF and style consistency tweaks
Diffstat (limited to 'lib/libssl/d1_srvr.c')
-rw-r--r-- | lib/libssl/d1_srvr.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libssl/d1_srvr.c b/lib/libssl/d1_srvr.c index 6a10f7a3ddb..fc475485baa 100644 --- a/lib/libssl/d1_srvr.c +++ b/lib/libssl/d1_srvr.c @@ -129,13 +129,12 @@ static const SSL_METHOD *dtls1_get_server_method(int ver); static int dtls1_send_hello_verify_request(SSL *s); -static const SSL_METHOD -*dtls1_get_server_method(int ver) +static const SSL_METHOD * +dtls1_get_server_method(int ver) { if (ver == DTLS1_VERSION) return (DTLSv1_server_method()); - else - return (NULL); + return (NULL); } IMPLEMENT_dtls1_meth_func(DTLSv1_server_method, |