[monitoring-plugins] check_curl: changed to STATE_CRITICAL for ...
Andreas Baumann
git at monitoring-plugins.org
Sun Jul 4 18:50:11 CEST 2021
Module: monitoring-plugins
Branch: feature_check_curl
Commit: 6e696643a5701ddd18945593743286b35b5944cb
Author: Andreas Baumann <mail at andreasbaumann.cc>
Date: Sun Jul 4 18:43:42 2021 +0200
URL: https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=6e69664
check_curl: changed to STATE_CRITICAL for infinite loops (-ffollow)
---
plugins/check_curl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index daf64b0..ba08c36 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -1106,8 +1106,8 @@ redir (curlhelp_write_curlbuf* header_buf)
!strncmp(server_address, new_host, MAX_IPV4_HOSTLENGTH) &&
(host_name && !strncmp(host_name, new_host, MAX_IPV4_HOSTLENGTH)) &&
!strcmp(server_url, new_url))
- die (STATE_WARNING,
- _("HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n"),
+ die (STATE_CRITICAL,
+ _("HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n"),
use_ssl ? "https" : "http", new_host, new_port, new_url, (display_html ? "</A>" : ""));
/* set new values for redirected request */
More information about the Commits
mailing list