diff options
author | guenther <> | 2014-04-19 08:52:32 +0000 |
---|---|---|
committer | guenther <> | 2014-04-19 08:52:32 +0000 |
commit | 9c56ea7409a7d85adbcb3da3782e03d77143f29f (patch) | |
tree | 1c8e1f947cd7380525a7312a9e96fad2690b90fa /src/lib/libssl/d1_meth.c | |
parent | bab0c40d0208675179a1f4214556ff84ec577453 (diff) | |
download | openbsd-9c56ea7409a7d85adbcb3da3782e03d77143f29f.tar.gz openbsd-9c56ea7409a7d85adbcb3da3782e03d77143f29f.tar.bz2 openbsd-9c56ea7409a7d85adbcb3da3782e03d77143f29f.zip |
More KNF and style consistency tweaks
Diffstat (limited to 'src/lib/libssl/d1_meth.c')
-rw-r--r-- | src/lib/libssl/d1_meth.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/libssl/d1_meth.c b/src/lib/libssl/d1_meth.c index 2d3f3920ec..1140da6825 100644 --- a/src/lib/libssl/d1_meth.c +++ b/src/lib/libssl/d1_meth.c | |||
@@ -62,13 +62,12 @@ | |||
62 | #include "ssl_locl.h" | 62 | #include "ssl_locl.h" |
63 | 63 | ||
64 | static const SSL_METHOD *dtls1_get_method(int ver); | 64 | static const SSL_METHOD *dtls1_get_method(int ver); |
65 | static const SSL_METHOD | 65 | static const SSL_METHOD * |
66 | *dtls1_get_method(int ver) | 66 | dtls1_get_method(int ver) |
67 | { | 67 | { |
68 | if (ver == DTLS1_VERSION) | 68 | if (ver == DTLS1_VERSION) |
69 | return (DTLSv1_method()); | 69 | return (DTLSv1_method()); |
70 | else | 70 | return (NULL); |
71 | return (NULL); | ||
72 | } | 71 | } |
73 | 72 | ||
74 | IMPLEMENT_dtls1_meth_func(DTLSv1_method, | 73 | IMPLEMENT_dtls1_meth_func(DTLSv1_method, |