diff options
author | Barak Shohat <barak@bazzisoft.com> | 2021-04-12 19:06:27 +0300 |
---|---|---|
committer | Barak Shohat <barak@bazzisoft.com> | 2021-04-12 19:06:27 +0300 |
commit | a514dc4708b3e791037191909aaa9fdb885ebe52 (patch) | |
tree | 3a5bb57526ed38b80c67a8ba18bfe09ea1a36ddf | |
parent | ad148667c8c0bab5e8a77baa95e920e08ca167e8 (diff) | |
download | monitoring-plugins-a514dc4708b3e791037191909aaa9fdb885ebe52.tar.gz |
check_curl: Fix bug where headers beginning with HTTP_ cause the status line parsing to fail.
-rw-r--r-- | plugins/check_curl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c index 99833f6f..3e0a6f94 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; |