diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-08 11:36:47 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-08 11:36:47 +0000 |
commit | 576be36249407e0450f507676a49cc5630ba6532 (patch) | |
tree | a4e21b7308df4503d75754b71c58fa8c7898e68f | |
parent | c52c592f4cb6f3365437c1396cd3f7273dc51f3e (diff) |
waitconnect() takes the timeout argument as a long
-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 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; |