diff options
author | guenther <> | 2014-04-19 08:52:32 +0000 |
---|---|---|
committer | guenther <> | 2014-04-19 08:52:32 +0000 |
commit | 9e60d35ac1ade619b0d44538f7f50f62c1514194 (patch) | |
tree | 1c8e1f947cd7380525a7312a9e96fad2690b90fa /src/lib/libssl/s3_clnt.c | |
parent | 8ffabaf4eba42faf2565cf746f06a82adf194000 (diff) | |
download | openbsd-9e60d35ac1ade619b0d44538f7f50f62c1514194.tar.gz openbsd-9e60d35ac1ade619b0d44538f7f50f62c1514194.tar.bz2 openbsd-9e60d35ac1ade619b0d44538f7f50f62c1514194.zip |
More KNF and style consistency tweaks
Diffstat (limited to 'src/lib/libssl/s3_clnt.c')
-rw-r--r-- | src/lib/libssl/s3_clnt.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/libssl/s3_clnt.c b/src/lib/libssl/s3_clnt.c index 8aef4b4f3d..10546ee848 100644 --- a/src/lib/libssl/s3_clnt.c +++ b/src/lib/libssl/s3_clnt.c | |||
@@ -167,13 +167,12 @@ | |||
167 | static const SSL_METHOD *ssl3_get_client_method(int ver); | 167 | static const SSL_METHOD *ssl3_get_client_method(int ver); |
168 | static int ca_dn_cmp(const X509_NAME * const *a, const X509_NAME * const *b); | 168 | static int ca_dn_cmp(const X509_NAME * const *a, const X509_NAME * const *b); |
169 | 169 | ||
170 | static const SSL_METHOD | 170 | static const SSL_METHOD * |
171 | *ssl3_get_client_method(int ver) | 171 | ssl3_get_client_method(int ver) |
172 | { | 172 | { |
173 | if (ver == SSL3_VERSION) | 173 | if (ver == SSL3_VERSION) |
174 | return (SSLv3_client_method()); | 174 | return (SSLv3_client_method()); |
175 | else | 175 | return (NULL); |
176 | return (NULL); | ||
177 | } | 176 | } |
178 | 177 | ||
179 | IMPLEMENT_ssl3_meth_func(SSLv3_client_method, | 178 | IMPLEMENT_ssl3_meth_func(SSLv3_client_method, |