diff options
author | Thib <Thib@toto.com> | 2023-01-20 14:07:15 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2023-01-23 10:45:27 +0100 |
commit | 2bde260ac0e30da39f4453e972c461cd9d1342e0 (patch) | |
tree | 237e2ce1844bcfef7c6e3d00322e32b4653a2cdc /doc | |
parent | Fix incorrect check on RAND_bytes_ex() in generate_q_fips186_4() (diff) | |
download | openssl-2bde260ac0e30da39f4453e972c461cd9d1342e0.tar.xz openssl-2bde260ac0e30da39f4453e972c461cd9d1342e0.zip |
Fixes wrong return type in BIO_do_connect man page.
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)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man3/BIO_s_connect.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/BIO_s_connect.pod b/doc/man3/BIO_s_connect.pod index 9f81c02188..4d07994c23 100644 --- a/doc/man3/BIO_s_connect.pod +++ b/doc/man3/BIO_s_connect.pod @@ -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 |