aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-03-08 11:36:47 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-03-08 11:36:47 +0000
commit576be36249407e0450f507676a49cc5630ba6532 (patch)
treea4e21b7308df4503d75754b71c58fa8c7898e68f
parentc52c592f4cb6f3365437c1396cd3f7273dc51f3e (diff)
waitconnect() takes the timeout argument as a long
-rw-r--r--lib/connect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connect.c b/lib/connect.c
index 3de043b94..1aedcbfcf 100644
--- a/lib/connect.c
+++ b/lib/connect.c
@@ -169,7 +169,7 @@ int Curl_nonblock(int sockfd, /* operate on this */
*/
static
int waitconnect(int sockfd, /* socket */
- int timeout_msec)
+ long timeout_msec)
{
fd_set fd;
fd_set errfd;