diff --git a/plugins/check_curl.c b/plugins/check_curl.c index d90de5ab..377fa0be 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c @@ -273,8 +273,8 @@ mp_subcheck check_http(const check_curl_config config, check_curl_working_state /* Custom handling for timeouts */ if (res == CURLE_OPERATION_TIMEDOUT) { - xasprintf(&sc_curl.output, _("cURL returned %d - %s"), - res, errbuf[0] ? errbuf : curl_easy_strerror(res)); + xasprintf(&sc_curl.output, _("cURL returned %d - %s"), res, + errbuf[0] ? errbuf : curl_easy_strerror(res)); sc_curl = mp_set_subcheck_state(sc_curl, config.on_timeout_result_state); mp_add_subcheck_to_subcheck(&sc_result, sc_curl); return sc_result;