summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bss_mem.c
diff options
context:
space:
mode:
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;