diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-09-07 21:49:20 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-09-07 21:49:20 +0000 |
commit | b7eeb6e67fca686f840eacd6b8394edb58b07482 (patch) | |
tree | cdcd4b0d54bcad40a57ef409d2594cca7d4d07d4 /lib/progress.c | |
parent | 7e4193b538a517eb27e4cb5b2b7973bae967add8 (diff) | |
download | curl-b7eeb6e67fca686f840eacd6b8394edb58b07482.tar.gz |
Major overhaul introducing http pipelining support and shared connection
cache within the multi handle.
Diffstat (limited to 'lib/progress.c')
-rw-r--r-- | lib/progress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/progress.c b/lib/progress.c index ce1adb805..2c449362d 100644 --- a/lib/progress.c +++ b/lib/progress.c @@ -252,11 +252,11 @@ int Curl_pgrsUpdate(struct connectdata *conn) even when not displayed! */ else if(!(data->progress.flags & PGRS_HEADERS_OUT)) { if (!data->progress.callback) { - if(conn->resume_from) + if(data->reqdata.resume_from) fprintf(data->set.err, "** Resuming transfer from byte position %" FORMAT_OFF_T "\n", - conn->resume_from); + data->reqdata.resume_from); fprintf(data->set.err, " %% Total %% Received %% Xferd Average Speed Time Time Time Current\n" " Dload Upload Total Spent Left Speed\n"); |