summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mozes <hydrapolic@gmail.com>2018-12-05 11:50:53 (GMT)
committerJan Wagner <waja@cyconet.org>2021-04-10 11:43:12 (GMT)
commite819b582d5bd1a3373d8bf2774bdff7bd6ce0a19 (patch)
treee328dfbbfcc7454ae70bc80cbd27270221767e49
parent001f684d210d0ca2d81b14ff3fcee02542d36a98 (diff)
downloadmonitoring-plugins-e819b58.tar.gz
plugins: check_http: Increase regexp limit
-rw-r--r--plugins/check_http.c2
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
73enum { 73enum {
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"
78regex_t preg; 78regex_t preg;