From: Paul Yang Date: Thu, 16 Mar 2017 09:05:30 +0000 (+0800) Subject: Fix typo in ASYNC_WAIT_CTX_new.pod doc X-Git-Tag: OpenSSL_1_1_0f~141 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=153442640dc616a402363120b530e5d32785f918;p=oweals%2Fopenssl.git Fix typo in ASYNC_WAIT_CTX_new.pod doc For the function that get the changed fds, it should be 'ASYNC_WAIT_CTX_get_changed_fds()' instead of 'ASYNC_WAIT_CTX_fds_have_changed()'. CLA: trivial Signed-off-by: Paul Yang Reviewed-by: Richard Levitte Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/2967) --- diff --git a/doc/crypto/ASYNC_WAIT_CTX_new.pod b/doc/crypto/ASYNC_WAIT_CTX_new.pod index 580c4e5dd7..2fb00a3ba4 100644 --- a/doc/crypto/ASYNC_WAIT_CTX_new.pod +++ b/doc/crypto/ASYNC_WAIT_CTX_new.pod @@ -57,7 +57,7 @@ asynchronous engine is being used then normally this call will only ever return one fd. If multiple asynchronous engines are being used then more could be returned. -The function ASYNC_WAIT_CTX_fds_have_changed() can be used to detect if any fds +The function ASYNC_WAIT_CTX_get_changed_fds() can be used to detect if any fds have changed since the last call time ASYNC_start_job() returned an ASYNC_PAUSE result (or since the ASYNC_WAIT_CTX was created if no ASYNC_PAUSE result has been received). The B and B parameters will be populated