aboutsummaryrefslogtreecommitdiff
path: root/lib/multi.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-04-26 07:20:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-04-26 07:20:11 +0000
commit648e82f05d8bce097f9f81b78d9df40f647f6170 (patch)
tree3853fbb58d25240561337356c5a99e44ffd57a72 /lib/multi.c
parent1dbe60b8b71c2308fab987f5b4c6c6e9a264dd66 (diff)
Major hostip.c cleanup and split into multiple files and easier #ifdef
usage.
Diffstat (limited to 'lib/multi.c')
-rw-r--r--lib/multi.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/multi.c b/lib/multi.c
index ddc4b16cb..7d86d202e 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -251,8 +251,7 @@ CURLMcode curl_multi_fdset(CURLM *multi_handle,
break;
case CURLM_STATE_WAITRESOLVE:
/* waiting for a resolve to complete */
- Curl_multi_ares_fdset(easy->easy_conn, read_fd_set, write_fd_set,
- &this_max_fd);
+ Curl_fdset(easy->easy_conn, read_fd_set, write_fd_set, &this_max_fd);
if(this_max_fd > *max_fd)
*max_fd = this_max_fd;
break;
@@ -413,7 +412,7 @@ CURLMcode curl_multi_perform(CURLM *multi_handle, int *running_handles)
easy->easy_conn->sock[FIRSTSOCKET],
&connected);
if(connected)
- easy->result = Curl_protocol_connect(easy->easy_conn, NULL);
+ easy->result = Curl_protocol_connect(easy->easy_conn);
if(CURLE_OK != easy->result) {
/* failure detected */