Fix typo in ASYNC_WAIT_CTX_new.pod doc
authorPaul Yang <paulyang.inf@gmail.com>
Thu, 16 Mar 2017 09:05:30 +0000 (17:05 +0800)
committerMatt Caswell <matt@openssl.org>
Thu, 16 Mar 2017 13:51:20 +0000 (13:51 +0000)
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 <paulyang.inf@gmail.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2967)

doc/crypto/ASYNC_WAIT_CTX_new.pod

index 580c4e5dd7ad29cf2ddb7f66a37613450253e6fc..2fb00a3ba449090d03902a12a1b4b70e7ae5727b 100644 (file)
@@ -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<numaddfds> and B<numdelfds> parameters will be populated