mirror of
https://github.com/curl/curl.git
synced 2026-04-27 03:22:12 +03:00
The progess meter title get an extra output when a resumed transfer is
taking place
This commit is contained in:
parent
62fec1d28d
commit
c8a546c941
1 changed files with 3 additions and 0 deletions
|
|
@ -203,6 +203,9 @@ int Curl_pgrsUpdate(struct UrlData *data)
|
|||
even when not displayed! */
|
||||
else if(!(data->progress.flags & PGRS_HEADERS_OUT)) {
|
||||
if (!data->progress.callback) {
|
||||
if(data->resume_from)
|
||||
fprintf(data->err, "** Resuming transfer from byte position %d\n",
|
||||
data->resume_from);
|
||||
fprintf(data->err,
|
||||
" %% Total %% Received %% Xferd Average Speed Time Curr.\n"
|
||||
" Dload Upload Total Current Left Speed\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue