[openssl] openssl-3.0 update
Dr. Paul Dale
pauli at openssl.org
Mon Feb 7 00:50:15 UTC 2022
The branch openssl-3.0 has been updated
via 25e02422374d4c5e7327320513230339db9b180b (commit)
from 25ee18e7f8803f6aaaeca15b49ba46d3e4d3f817 (commit)
- Log -----------------------------------------------------------------
commit 25e02422374d4c5e7327320513230339db9b180b
Author: Thomas1664 <46387399+Thomas1664 at users.noreply.github.com>
Date: Thu Jan 20 10:02:59 2022 +0100
Correct return type for BIO_ptr_ctrl
Fixes #17549
CLA: trivial
Reviewed-by: Tomas Mraz <tomas at openssl.org>
Reviewed-by: Paul Dale <pauli at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17636)
(cherry picked from commit 984cc9a0284ee4800862aa305f9f178827baf459)
-----------------------------------------------------------------------
Summary of changes:
doc/man3/BIO_ctrl.pod | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/man3/BIO_ctrl.pod b/doc/man3/BIO_ctrl.pod
index bcdeac6f7b..cfb505e314 100644
--- a/doc/man3/BIO_ctrl.pod
+++ b/doc/man3/BIO_ctrl.pod
@@ -17,7 +17,7 @@ BIO_get_ktls_recv
long BIO_ctrl(BIO *bp, int cmd, long larg, void *parg);
long BIO_callback_ctrl(BIO *b, int cmd, BIO_info_cb *cb);
- char *BIO_ptr_ctrl(BIO *bp, int cmd, long larg);
+ void *BIO_ptr_ctrl(BIO *bp, int cmd, long larg);
long BIO_int_ctrl(BIO *bp, int cmd, long larg, int iarg);
int BIO_reset(BIO *b);
More information about the openssl-commits
mailing list