aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_http.c
diff options
context:
space:
mode:
authorGravatar Sven Nierlein <sven@nierlein.de> 2021-04-07 17:15:20 +0200
committerGravatar GitHub <noreply@github.com> 2021-04-07 17:15:20 +0200
commit4ad33d9f2747d710beefd8ca7daa357669cec717 (patch)
tree177c083d7272194c073edb3d01350235a71b88d0 /plugins/check_http.c
parentde7effdf06bc3808bbe82025bf695538b26599fa (diff)
parent0a58acc7052d4962d8fe68aeb6919b59dfdef1cf (diff)
downloadmonitoring-plugins-4ad33d9f2747d710beefd8ca7daa357669cec717.tar.gz
Merge pull request #1566 from hydrapolic/master
plugins: check_http: Increase regexp limit
Diffstat (limited to 'plugins/check_http.c')
-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 e2298b17..986cdf2f 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -72,7 +72,7 @@ int maximum_age = -1;
enum {
REGS = 2,
- MAX_RE_SIZE = 256
+ MAX_RE_SIZE = 1024
};
#include "regex.h"
regex_t preg;