summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bss_mem.c
diff options
context:
space:
mode:
authorderaadt <>2014-04-17 17:50:45 +0000
committerderaadt <>2014-04-17 17:50:45 +0000
commit2e080839425d10a274e835d261a91b5303d3e3da (patch)
treeb19a44b73bedac145a60acd7df66b35b43f8e53e /src/lib/libcrypto/bio/bss_mem.c
parentf12d5e8e579bed92a70d9d81ec8e318483c982a7 (diff)
downloadopenbsd-2e080839425d10a274e835d261a91b5303d3e3da.tar.gz
openbsd-2e080839425d10a274e835d261a91b5303d3e3da.tar.bz2
openbsd-2e080839425d10a274e835d261a91b5303d3e3da.zip
some KNF cleanup following the script
Diffstat (limited to 'src/lib/libcrypto/bio/bss_mem.c')
-rw-r--r--src/lib/libcrypto/bio/bss_mem.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/bio/bss_mem.c b/src/lib/libcrypto/bio/bss_mem.c
index a5192202bd..1a477c12be 100644
--- a/src/lib/libcrypto/bio/bss_mem.c
+++ b/src/lib/libcrypto/bio/bss_mem.c
@@ -85,14 +85,14 @@ static BIO_METHOD mem_method = {
85/* bio->num is used to hold the value to return on 'empty', if it is 85/* bio->num is used to hold the value to return on 'empty', if it is
86 * 0, should_retry is not set */ 86 * 0, should_retry is not set */
87 87
88BIO_METHOD 88BIO_METHOD *
89*BIO_s_mem(void) 89BIO_s_mem(void)
90{ 90{
91 return (&mem_method); 91 return (&mem_method);
92} 92}
93 93
94BIO 94BIO *
95*BIO_new_mem_buf(void *buf, int len) 95BIO_new_mem_buf(void *buf, int len)
96{ 96{
97 BIO *ret; 97 BIO *ret;
98 BUF_MEM *b; 98 BUF_MEM *b;