From: Hugo Landau Date: Tue, 24 Oct 2023 07:49:49 +0000 (+0100) Subject: Preemptively reflect the changes in #22480 X-Git-Tag: openssl-3.3.0-alpha1~776 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4177999d2783d24f5053a1edb4de9aa5ecd11c4d;p=thirdparty%2Fopenssl.git 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) --- 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.