diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-04-17 17:50:46 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-04-17 17:50:46 +0000 |
commit | ef1acec489edffbf19f2f024833af10577413880 (patch) | |
tree | 3fbf0f06bde71b29cabf346dfd4bd3488ba10754 /lib/libcrypto/bio/bss_sock.c | |
parent | 12389820fc8dfa2e85dc977ba297ea1e7063ec53 (diff) |
some KNF cleanup following the script
Diffstat (limited to 'lib/libcrypto/bio/bss_sock.c')
-rw-r--r-- | lib/libcrypto/bio/bss_sock.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/bio/bss_sock.c b/lib/libcrypto/bio/bss_sock.c index b9cf817a0c4..5335495c6ef 100644 --- a/lib/libcrypto/bio/bss_sock.c +++ b/lib/libcrypto/bio/bss_sock.c @@ -86,14 +86,14 @@ static BIO_METHOD methods_sockp = { NULL, }; -BIO_METHOD -*BIO_s_socket(void) +BIO_METHOD * +BIO_s_socket(void) { return (&methods_sockp); } -BIO -*BIO_new_socket(int fd, int close_flag) +BIO * +BIO_new_socket(int fd, int close_flag) { BIO *ret; |