From 4177999d2783d24f5053a1edb4de9aa5ecd11c4d Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Tue, 24 Oct 2023 08:49:49 +0100 Subject: [PATCH] Preemptively reflect the changes in #22480 Reviewed-by: Tomas Mraz Reviewed-by: Tim Hudson Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/22487) --- doc/man3/BIO_set_callback.pod | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/man3/BIO_set_callback.pod b/doc/man3/BIO_set_callback.pod index 114e4cfdfa2..6c81110e9aa 100644 --- a/doc/man3/BIO_set_callback.pod +++ b/doc/man3/BIO_set_callback.pod @@ -227,19 +227,19 @@ the actual call parameter, see B. =item B - callback_ex(b, BIO_CB_SENDMMSG, args, 0, 0, 0, 0, NULL) + callback_ex(b, BIO_CB_SENDMMSG, args, 0, 0, 0, 1, NULL) or - callback(b, BIO_CB_SENDMMSG, args, 0, 0, 0) + callback(b, BIO_CB_SENDMMSG, args, 0, 0, 1) is called before the call and - callback_ex(b, BIO_CB_SENDMMSG | BIO_CB_RETURN, args, ret, 0, 0, 0, NULL) + callback_ex(b, BIO_CB_SENDMMSG | BIO_CB_RETURN, args, ret, 0, 0, ret, NULL) or - callback(b, BIO_CB_SENDMMSG | BIO_CB_RETURN, args, ret, 0, 0, 0) + callback(b, BIO_CB_SENDMMSG | BIO_CB_RETURN, args, ret, 0, 0, ret) after. -- 2.47.2