diff options
author | Yang Tse <yangsita@gmail.com> | 2007-03-26 23:23:46 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-03-26 23:23:46 +0000 |
commit | fba4cd0e625cdba3561b3530317ba87ae348aeaf (patch) | |
tree | 0b245f00a4f21478d863db7cdd49a92797ee8cf9 /lib/connect.c | |
parent | 2166645ce4091b14ef6fd25c594d184c4f700ba5 (diff) | |
download | curl-fba4cd0e625cdba3561b3530317ba87ae348aeaf.tar.gz |
Internal function Curl_select() renamed to Curl_socket_ready()
Diffstat (limited to 'lib/connect.c')
-rw-r--r-- | lib/connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connect.c b/lib/connect.c index 147b73eaa..95791cf5d 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -197,7 +197,7 @@ int waitconnect(curl_socket_t sockfd, /* socket */ #endif /* now select() until we get connect or timeout */ - rc = Curl_select(CURL_SOCKET_BAD, sockfd, (int)timeout_msec); + rc = Curl_socket_ready(CURL_SOCKET_BAD, sockfd, (int)timeout_msec); if(-1 == rc) /* error, no connect here, try next */ return WAITCONN_SELECT_ERROR; |