diff options
author | deraadt <> | 2014-04-17 17:50:45 +0000 |
---|---|---|
committer | deraadt <> | 2014-04-17 17:50:45 +0000 |
commit | 2e080839425d10a274e835d261a91b5303d3e3da (patch) | |
tree | b19a44b73bedac145a60acd7df66b35b43f8e53e /src/lib/libcrypto/bio/bss_sock.c | |
parent | f12d5e8e579bed92a70d9d81ec8e318483c982a7 (diff) | |
download | openbsd-2e080839425d10a274e835d261a91b5303d3e3da.tar.gz openbsd-2e080839425d10a274e835d261a91b5303d3e3da.tar.bz2 openbsd-2e080839425d10a274e835d261a91b5303d3e3da.zip |
some KNF cleanup following the script
Diffstat (limited to 'src/lib/libcrypto/bio/bss_sock.c')
-rw-r--r-- | src/lib/libcrypto/bio/bss_sock.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/bio/bss_sock.c b/src/lib/libcrypto/bio/bss_sock.c index b9cf817a0c..5335495c6e 100644 --- a/src/lib/libcrypto/bio/bss_sock.c +++ b/src/lib/libcrypto/bio/bss_sock.c | |||
@@ -86,14 +86,14 @@ static BIO_METHOD methods_sockp = { | |||
86 | NULL, | 86 | NULL, |
87 | }; | 87 | }; |
88 | 88 | ||
89 | BIO_METHOD | 89 | BIO_METHOD * |
90 | *BIO_s_socket(void) | 90 | BIO_s_socket(void) |
91 | { | 91 | { |
92 | return (&methods_sockp); | 92 | return (&methods_sockp); |
93 | } | 93 | } |
94 | 94 | ||
95 | BIO | 95 | BIO * |
96 | *BIO_new_socket(int fd, int close_flag) | 96 | BIO_new_socket(int fd, int close_flag) |
97 | { | 97 | { |
98 | BIO *ret; | 98 | BIO *ret; |
99 | 99 | ||