summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/process_url.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/process_url.c b/src/process_url.c
index a8dadc9..c1d8d38 100644
--- a/src/process_url.c
+++ b/src/process_url.c
@@ -528,8 +528,10 @@ void poll_status(status_t *stat) {
for (unsigned char i = 0; i < curl_conf->total_thrd; i++) {
curl_conf->dlnow += curl_conf->dlnow_per_thrd[i];
}
- stat->cur = (unsigned long long)curl_conf->dlnow;
- stat->total = (unsigned long long)curl_conf->dltotal;
+ if (stat->type == SIZE_BYTES) {
+ stat->cur = (unsigned long long)curl_conf->dlnow;
+ stat->total = (unsigned long long)curl_conf->dltotal;
+ }
DEBUG_PRINT("success_thrd: %hhu, total_thrd: %hhu, is_done: %s\n",
curl_conf->success_thrd, curl_conf->total_thrd,
stat->is_done ? "yes" : "no");