diff options
Diffstat (limited to 'src/lib/libcrypto/bio/bss_fd.c')
-rw-r--r-- | src/lib/libcrypto/bio/bss_fd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/bio/bss_fd.c b/src/lib/libcrypto/bio/bss_fd.c index 988104e77c..4369d6411d 100644 --- a/src/lib/libcrypto/bio/bss_fd.c +++ b/src/lib/libcrypto/bio/bss_fd.c | |||
@@ -90,14 +90,14 @@ static BIO_METHOD methods_fdp = { | |||
90 | NULL, | 90 | NULL, |
91 | }; | 91 | }; |
92 | 92 | ||
93 | BIO_METHOD | 93 | BIO_METHOD * |
94 | *BIO_s_fd(void) | 94 | BIO_s_fd(void) |
95 | { | 95 | { |
96 | return (&methods_fdp); | 96 | return (&methods_fdp); |
97 | } | 97 | } |
98 | 98 | ||
99 | BIO | 99 | BIO * |
100 | *BIO_new_fd(int fd, int close_flag) | 100 | BIO_new_fd(int fd, int close_flag) |
101 | { | 101 | { |
102 | BIO *ret; | 102 | BIO *ret; |
103 | ret = BIO_new(BIO_s_fd()); | 103 | ret = BIO_new(BIO_s_fd()); |