summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarak Shohat <barak@bazzisoft.com>2021-04-12 16:06:27 (GMT)
committerJan Wagner <waja@cyconet.org>2021-04-13 10:06:18 (GMT)
commitf0ac7fcc7c40fab04c00fbbc8c091e89e77b0f74 (patch)
tree5ceae60e534223d3b0e5a5458c2fc7a2a1ff2e5c
parent5c1d2efd687eaef33b61e4d20706be9fadc0be6a (diff)
downloadmonitoring-plugins-f0ac7fcc7c40fab04c00fbbc8c091e89e77b0f74.tar.gz
check_curl: Fix bug where headers beginning with HTTP_ cause the status line parsing to fail.
-rw-r--r--plugins/check_curl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index 99833f6..3e0a6f9 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -1995,7 +1995,7 @@ curlhelp_parse_statusline (const char *buf, curlhelp_statusline *status_line)
1995 char *first_line_buf; 1995 char *first_line_buf;
1996 1996
1997 /* find last start of a new header */ 1997 /* find last start of a new header */
1998 start = strrstr2 (buf, "\r\nHTTP"); 1998 start = strrstr2 (buf, "\r\nHTTP/");
1999 if (start != NULL) { 1999 if (start != NULL) {
2000 start += 2; 2000 start += 2;
2001 buf = start; 2001 buf = start;