Use Curl_tvdiff to compare times
This commit is contained in:
parent
7d24ce9651
commit
99888388dc
@ -194,7 +194,7 @@ int Curl_GetFTPResponse(char *buf,
|
||||
if(data->set.timeout) {
|
||||
/* if timeout is requested, find out how much remaining time we have */
|
||||
timeout = data->set.timeout - /* timeout time */
|
||||
(Curl_tvlong(Curl_tvnow()) - Curl_tvlong(conn->now)); /* spent time */
|
||||
Curl_tvdiff(Curl_tvnow(), conn->now)/1000; /* spent time */
|
||||
if(timeout <=0 ) {
|
||||
failf(data, "Transfer aborted due to timeout");
|
||||
return -SELECT_TIMEOUT; /* already too little time */
|
||||
|
Loading…
x
Reference in New Issue
Block a user