aboutsummaryrefslogtreecommitdiff
path: root/src/curl
diff options
context:
space:
mode:
Diffstat (limited to 'src/curl')
-rw-r--r--src/curl/curl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/curl/curl.c b/src/curl/curl.c
index 9284d7b45..07f31970a 100644
--- a/src/curl/curl.c
+++ b/src/curl/curl.c
@@ -511,7 +511,7 @@ GNUNET_CURL_perform (struct GNUNET_CURL_Context *ctx)
511 res = curl_easy_getinfo (cmsg->easy_handle, CURLINFO_TOTAL_TIME, &total); 511 res = curl_easy_getinfo (cmsg->easy_handle, CURLINFO_TOTAL_TIME, &total);
512 GNUNET_break (CURLE_OK == res); 512 GNUNET_break (CURLE_OK == res);
513 curl_easy_getinfo (cmsg->easy_handle, CURLINFO_EFFECTIVE_URL, &url); 513 curl_easy_getinfo (cmsg->easy_handle, CURLINFO_EFFECTIVE_URL, &url);
514 urd = get_url_benchmark_data (url); 514 urd = get_url_benchmark_data (url, (unsigned int) response_code);
515 urd->count++; 515 urd->count++;
516 urd->time.rel_value_us += total * 1000 * 1000; 516 urd->time.rel_value_us += total * 1000 * 1000;
517 } 517 }