diff options
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, |