From: Marc Fournier Date: Sat, 4 Apr 2015 20:35:55 +0000 (+0200) Subject: curl: correct typo in error message X-Git-Tag: collectd-5.5.0~12^2~9 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=2b9664594b14d33b989924657dd2ef4b1a53589a curl: correct typo in error message --- diff --git a/src/curl.c b/src/curl.c index 52653fb0..ac55953c 100644 --- a/src/curl.c +++ b/src/curl.c @@ -641,7 +641,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); } @@ -654,7 +654,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);