diff options
author | Tomas Mozes <hydrapolic@gmail.com> | 2018-12-05 11:50:53 (GMT) |
---|---|---|
committer | Jan Wagner <waja@cyconet.org> | 2021-04-10 11:43:12 (GMT) |
commit | e819b582d5bd1a3373d8bf2774bdff7bd6ce0a19 (patch) | |
tree | e328dfbbfcc7454ae70bc80cbd27270221767e49 /plugins | |
parent | 001f684d210d0ca2d81b14ff3fcee02542d36a98 (diff) | |
download | monitoring-plugins-e819b582d5bd1a3373d8bf2774bdff7bd6ce0a19.tar.gz |
plugins: check_http: Increase regexp limit
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index e2298b1..986cdf2 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
@@ -72,7 +72,7 @@ int maximum_age = -1; | |||
72 | 72 | ||
73 | enum { | 73 | enum { |
74 | REGS = 2, | 74 | REGS = 2, |
75 | MAX_RE_SIZE = 256 | 75 | MAX_RE_SIZE = 1024 |
76 | }; | 76 | }; |
77 | #include "regex.h" | 77 | #include "regex.h" |
78 | regex_t preg; | 78 | regex_t preg; |