Use Curl_tvdiff to compare times

This commit is contained in:
Daniel Stenberg 2001-11-01 12:17:51 +00:00
parent 7d24ce9651
commit 99888388dc

View File

@ -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 */