X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fcurl.c;h=b750f80bfa82ddddfe74bf967a890cac1e87bc57;hb=979b0fa58b2de639ff79209eff12ec17ff593483;hp=11da3858237f6cacb9479cbed58853dca1073b18;hpb=8a2c605b07917885438eb80f1d5097cb58e6193b;p=collectd.git diff --git a/src/curl.c b/src/curl.c index 11da3858..b750f80b 100644 --- a/src/curl.c +++ b/src/curl.c @@ -665,7 +665,7 @@ static int cc_read_page (web_page_t *wp) /* {{{ */ status = curl_easy_perform (wp->curl); if (status != CURLE_OK) { - ERROR ("curl plugin: curl_easy_perform failed with staus %i: %s", + ERROR ("curl plugin: curl_easy_perform failed with status %i: %s", status, wp->curl_errbuf); return (-1); } @@ -678,7 +678,7 @@ static int cc_read_page (web_page_t *wp) /* {{{ */ long response_code = 0; status = curl_easy_getinfo(wp->curl, CURLINFO_RESPONSE_CODE, &response_code); if(status != CURLE_OK) { - ERROR ("curl plugin: Fetching response code failed with staus %i: %s", + ERROR ("curl plugin: Fetching response code failed with status %i: %s", status, wp->curl_errbuf); } else { cc_submit_response_code(wp, response_code);