diff options
Diffstat (limited to 'src/lib/libcrypto/bio/bss_mem.c')
-rw-r--r-- | src/lib/libcrypto/bio/bss_mem.c | 8 |
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 | ||
88 | BIO_METHOD | 88 | BIO_METHOD * |
89 | *BIO_s_mem(void) | 89 | BIO_s_mem(void) |
90 | { | 90 | { |
91 | return (&mem_method); | 91 | return (&mem_method); |
92 | } | 92 | } |
93 | 93 | ||
94 | BIO | 94 | BIO * |
95 | *BIO_new_mem_buf(void *buf, int len) | 95 | BIO_new_mem_buf(void *buf, int len) |
96 | { | 96 | { |
97 | BIO *ret; | 97 | BIO *ret; |
98 | BUF_MEM *b; | 98 | BUF_MEM *b; |