From: Daniel Stenberg Date: Mon, 8 Mar 2004 11:36:47 +0000 (+0000) Subject: waitconnect() takes the timeout argument as a long X-Git-Tag: curl-7_11_1~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=576be36249407e0450f507676a49cc5630ba6532;p=thirdparty%2Fcurl.git waitconnect() takes the timeout argument as a long --- diff --git a/lib/connect.c b/lib/connect.c index 3de043b948..1aedcbfcf0 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;