]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
curl_multi_fdset.3: remove mention of null pointer support
authorDaniel Stenberg <daniel@haxx.se>
Sat, 13 Jan 2024 22:18:20 +0000 (23:18 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 14 Jan 2024 13:53:38 +0000 (14:53 +0100)
... since this funtion has not supported null pointer fd_set arguments since
at least 2006. (That's when I stopped my git blame journey)

Fixes #12691
Reported-by: sfan5 on github
Closes #12692

docs/libcurl/curl_multi_fdset.3

index 8a3ae965a6593ee54f76c36b17312df46b30e0bc..0afbe9a3ccf5233a23b4e7cfab38f53f753bb811 100644 (file)
@@ -42,17 +42,17 @@ select() on, but be sure to \fIFD_ZERO\fP them before calling this function as
 otherwise remove any others. The \fIcurl_multi_perform(3)\fP function should
 be called as soon as one of them is ready to be read from or written to.
 
-If the \fIread_fd_set\fP argument is not a null pointer, it points to an
-object of type \fBfd_set\fP that on returns specifies the file descriptors to
-be checked for being ready to read.
+The \fIread_fd_set\fP argument should point to an object of type \fBfd_set\fP
+that on returns specifies the file descriptors to be checked for being ready
+to read.
 
-If the \fIwrite_fd_set\fP argument is not a null pointer, it points to an
-object of type \fBfd_set\fP that on return specifies the file descriptors to
-be checked for being ready to write.
+The \fIwrite_fd_set\fP argument should point to an object of type \fBfd_set\fP
+that on return specifies the file descriptors to be checked for being ready to
+write.
 
-If the \fIexc_fd_set\fP argument is not a null pointer, it points to an object
-of type \fBfd_set\fP that on return specifies the file descriptors to be
-checked for error conditions pending.
+The \fIexc_fd_set\fP argument should point to an object of type \fBfd_set\fP
+that on return specifies the file descriptors to be checked for error
+conditions.
 
 If no file descriptors are set by libcurl, \fImax_fd\fP contain -1 when this
 function returns. Otherwise it contains the highest descriptor number libcurl