aboutsummaryrefslogtreecommitdiff
path: root/lib/select.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-05-05 10:24:27 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-05-05 10:24:27 +0000
commit9bece2b313ec75901410b52056adbaae8c49e508 (patch)
treeec55ec40f428fd1f856423ad47afd0743bea9b14 /lib/select.c
parente85e30546c89e17b6fb0cf383de25b7ed7f3bf3d (diff)
additional renames of Curl_ourerrno => Curl_sockerrno
Diffstat (limited to 'lib/select.c')
-rw-r--r--lib/select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/select.c b/lib/select.c
index cf5f15a8f..42a9a5c35 100644
--- a/lib/select.c
+++ b/lib/select.c
@@ -152,7 +152,7 @@ int Curl_select(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms)
do {
r = select((int)maxfd + 1, &fds_read, &fds_write, &fds_err, &timeout);
- } while((r == -1) && (Curl_ourerrno() == EINTR));
+ } while((r == -1) && (Curl_sockerrno() == EINTR));
if (r < 0)
return -1;
@@ -237,7 +237,7 @@ int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms)
do {
r = select((int)maxfd + 1, &fds_read, &fds_write, &fds_err, ptimeout);
- } while((r == -1) && (Curl_ourerrno() == EINTR));
+ } while((r == -1) && (Curl_sockerrno() == EINTR));
if (r < 0)
return -1;