diff options
Diffstat (limited to 'lib/libcrypto/bio/bss_acpt.c')
-rw-r--r-- | lib/libcrypto/bio/bss_acpt.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libcrypto/bio/bss_acpt.c b/lib/libcrypto/bio/bss_acpt.c index 161b5d01f80..a272ada3667 100644 --- a/lib/libcrypto/bio/bss_acpt.c +++ b/lib/libcrypto/bio/bss_acpt.c @@ -110,8 +110,8 @@ static BIO_METHOD methods_acceptp = { NULL, }; -BIO_METHOD -*BIO_s_accept(void) +BIO_METHOD * +BIO_s_accept(void) { return (&methods_acceptp); } @@ -132,8 +132,8 @@ acpt_new(BIO *bi) return (1); } -static BIO_ACCEPT -*BIO_ACCEPT_new(void) +static BIO_ACCEPT * +BIO_ACCEPT_new(void) { BIO_ACCEPT *ret; @@ -443,8 +443,8 @@ acpt_puts(BIO *bp, const char *str) return (ret); } -BIO -*BIO_new_accept(char *str) +BIO * +BIO_new_accept(char *str) { BIO *ret; |