summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bss_acpt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bio/bss_acpt.c')
-rw-r--r--src/lib/libcrypto/bio/bss_acpt.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libcrypto/bio/bss_acpt.c b/src/lib/libcrypto/bio/bss_acpt.c
index 161b5d01f8..a272ada366 100644
--- a/src/lib/libcrypto/bio/bss_acpt.c
+++ b/src/lib/libcrypto/bio/bss_acpt.c
@@ -110,8 +110,8 @@ static BIO_METHOD methods_acceptp = {
110 NULL, 110 NULL,
111}; 111};
112 112
113BIO_METHOD 113BIO_METHOD *
114*BIO_s_accept(void) 114BIO_s_accept(void)
115{ 115{
116 return (&methods_acceptp); 116 return (&methods_acceptp);
117} 117}
@@ -132,8 +132,8 @@ acpt_new(BIO *bi)
132 return (1); 132 return (1);
133} 133}
134 134
135static BIO_ACCEPT 135static BIO_ACCEPT *
136*BIO_ACCEPT_new(void) 136BIO_ACCEPT_new(void)
137{ 137{
138 BIO_ACCEPT *ret; 138 BIO_ACCEPT *ret;
139 139
@@ -443,8 +443,8 @@ acpt_puts(BIO *bp, const char *str)
443 return (ret); 443 return (ret);
444} 444}
445 445
446BIO 446BIO *
447*BIO_new_accept(char *str) 447BIO_new_accept(char *str)
448{ 448{
449 BIO *ret; 449 BIO *ret;
450 450