summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarak Shohat <barak@bazzisoft.com>2021-04-12 16:06:27 (GMT)
committerBarak Shohat <barak@bazzisoft.com>2021-04-12 16:06:27 (GMT)
commita514dc4708b3e791037191909aaa9fdb885ebe52 (patch)
tree3a5bb57526ed38b80c67a8ba18bfe09ea1a36ddf
parentad148667c8c0bab5e8a77baa95e920e08ca167e8 (diff)
downloadmonitoring-plugins-a514dc4.tar.gz
check_curl: Fix bug where headers beginning with HTTP_ cause the status line parsing to fail.refs/pull/1674/head
-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;