diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-10-30 16:40:28 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-10-30 16:40:28 +0100 |
commit | f2003295a07dc0475f4b07b3c8de3d88fd0384bd (patch) | |
tree | 481e905f2b24fd80a5c126fd21f058ac85ed7c3e /lib/select.c | |
parent | 647f9aea68048a4c816f3070c3b35d250b9daabc (diff) | |
download | curl-f2003295a07dc0475f4b07b3c8de3d88fd0384bd.tar.gz |
select: update comments
s/curlx_tvnow/Curl_now
Diffstat (limited to 'lib/select.c')
-rw-r--r-- | lib/select.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/select.c b/lib/select.c index d29868841..28390a4a6 100644 --- a/lib/select.c +++ b/lib/select.c @@ -177,7 +177,7 @@ int Curl_socket_check(curl_socket_t readfd0, /* two sockets to read from */ return r; } - /* Avoid initial timestamp, avoid curlx_tvnow() call, when elapsed + /* Avoid initial timestamp, avoid Curl_now() call, when elapsed time in this function does not need to be measured. This happens when function is called with a zero timeout or a negative timeout value indicating a blocking call should be performed. */ @@ -418,7 +418,7 @@ int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms) return r; } - /* Avoid initial timestamp, avoid curlx_tvnow() call, when elapsed + /* Avoid initial timestamp, avoid Curl_now() call, when elapsed time in this function does not need to be measured. This happens when function is called with a zero timeout or a negative timeout value indicating a blocking call should be performed. */ |