Display progress-bar unconditionally on first call
This commit is contained in:
Yang Tse 2013-08-01 12:25:01 +02:00
Родитель 14a3139c4d
Коммит ca786233d2
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -55,7 +55,8 @@ int tool_progress_cb(void *clientp,
curl_off_t total;
curl_off_t point;
if(tvdiff(now, bar->prevtime) < 200L) /* allow 5 Hz */
if(bar->calls && (tvdiff(now, bar->prevtime) < 200L))
/* after first call, limit progress-bar updating to 5 Hz */
return 0;
/* expected transfer size */