]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fixes wrong return type in BIO_do_connect man page.
authorThib <Thib@toto.com>
Fri, 20 Jan 2023 13:07:15 +0000 (14:07 +0100)
committerTomas Mraz <tomas@openssl.org>
Mon, 23 Jan 2023 09:45:27 +0000 (10:45 +0100)
Current man page indicates the function returns an int while it returns
a long.

Fixes #20096.

CLA: trivial

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20097)

doc/man3/BIO_s_connect.pod

index 9f81c021887548dc3adf8962af66905eb18d94e1..4d07994c23653f57e4bf611dec52f2a7313481af 100644 (file)
@@ -28,7 +28,7 @@ BIO_set_nbio, BIO_do_connect - connect BIO
 
  long BIO_set_nbio(BIO *b, long n);
 
int BIO_do_connect(BIO *b);
long BIO_do_connect(BIO *b);
 
 =head1 DESCRIPTION