mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-03-24 03:13:05 -04:00
add a newline before dying in handle_curl_option_return_code
This commit is contained in:
parent
687fe995d5
commit
d039da1eac
1 changed files with 1 additions and 1 deletions
|
|
@ -666,7 +666,7 @@ check_curl_configure_curl(const check_curl_static_curl_config config,
|
|||
|
||||
void handle_curl_option_return_code(CURLcode res, const char *option) {
|
||||
if (res != CURLE_OK) {
|
||||
die(STATE_CRITICAL, _("Error while setting cURL option '%s': cURL returned %d - %s"),
|
||||
die(STATE_CRITICAL, _("Error while setting cURL option '%s': cURL returned %d - %s\n"),
|
||||
option, res, curl_easy_strerror(res));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue