From d039da1eac6d0edaeeec9c21acafab529ada28d6 Mon Sep 17 00:00:00 2001 From: Ahmet Oeztuerk Date: Thu, 19 Feb 2026 14:29:31 +0100 Subject: [PATCH] add a newline before dying in handle_curl_option_return_code --- plugins/check_curl.d/check_curl_helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/check_curl.d/check_curl_helpers.c b/plugins/check_curl.d/check_curl_helpers.c index fee1ef79..4372dc0b 100644 --- a/plugins/check_curl.d/check_curl_helpers.c +++ b/plugins/check_curl.d/check_curl_helpers.c @@ -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)); } }