mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
the now and start variables were never really used
This commit is contained in:
parent
fa57a8a78e
commit
6a921197e2
@ -174,8 +174,6 @@ CURLcode Curl_file(struct connectdata *conn)
|
|||||||
struct SessionHandle *data = conn->data;
|
struct SessionHandle *data = conn->data;
|
||||||
char *buf = data->state.buffer;
|
char *buf = data->state.buffer;
|
||||||
curl_off_t bytecount = 0;
|
curl_off_t bytecount = 0;
|
||||||
struct timeval start = Curl_tvnow();
|
|
||||||
struct timeval now = start;
|
|
||||||
int fd;
|
int fd;
|
||||||
|
|
||||||
/* get the fd from the connection phase */
|
/* get the fd from the connection phase */
|
||||||
@ -261,11 +259,9 @@ CURLcode Curl_file(struct connectdata *conn)
|
|||||||
if(res)
|
if(res)
|
||||||
return res;
|
return res;
|
||||||
|
|
||||||
now = Curl_tvnow();
|
|
||||||
if(Curl_pgrsUpdate(conn))
|
if(Curl_pgrsUpdate(conn))
|
||||||
res = CURLE_ABORTED_BY_CALLBACK;
|
res = CURLE_ABORTED_BY_CALLBACK;
|
||||||
}
|
}
|
||||||
now = Curl_tvnow();
|
|
||||||
if(Curl_pgrsUpdate(conn))
|
if(Curl_pgrsUpdate(conn))
|
||||||
res = CURLE_ABORTED_BY_CALLBACK;
|
res = CURLE_ABORTED_BY_CALLBACK;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user