aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_http.c
diff options
context:
space:
mode:
authorGravatar Tomas Mozes <hydrapolic@gmail.com> 2018-12-05 12:50:53 +0100
committerGravatar Tomas Mozes <hydrapolic@gmail.com> 2018-12-05 12:50:53 +0100
commit0a58acc7052d4962d8fe68aeb6919b59dfdef1cf (patch)
treea0b26468983647eaf27b505a3587c8fb0f10c519 /plugins/check_http.c
parentc285edd2f34582c954a720317c3feba37aa1a33a (diff)
downloadmonitoring-plugins-0a58acc7052d4962d8fe68aeb6919b59dfdef1cf.tar.gz
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 856e1e90..a25f1ec0 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;