summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/curl/curl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/curl/curl.c b/src/curl/curl.c
index 5e1c216ab..4bd2a55d0 100644
--- a/src/curl/curl.c
+++ b/src/curl/curl.c
@@ -536,8 +536,8 @@ GNUNET_CURL_perform2 (struct GNUNET_CURL_Context *ctx,
536 urd->count++; 536 urd->count++;
537 urd->time = GNUNET_TIME_relative_add (urd->time, total); 537 urd->time = GNUNET_TIME_relative_add (urd->time, total);
538 urd->time_max = GNUNET_TIME_relative_max (total, urd->time_max); 538 urd->time_max = GNUNET_TIME_relative_max (total, urd->time_max);
539 urd->bytes_sent = bytes_sent; 539 urd->bytes_sent += bytes_sent;
540 urd->bytes_received = bytes_received; 540 urd->bytes_received += bytes_received;
541 } 541 }
542#endif 542#endif
543 job->jcc (job->jcc_cls, 543 job->jcc (job->jcc_cls,