summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mozes <hydrapolic@gmail.com>2018-12-05 11:50:53 (GMT)
committerTomas Mozes <hydrapolic@gmail.com>2018-12-05 11:50:53 (GMT)
commit0a58acc7052d4962d8fe68aeb6919b59dfdef1cf (patch)
treea0b26468983647eaf27b505a3587c8fb0f10c519
parentc285edd2f34582c954a720317c3feba37aa1a33a (diff)
downloadmonitoring-plugins-0a58acc.tar.gz
plugins: check_http: Increase regexp limitrefs/pull/1566/head
-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 856e1e9..a25f1ec 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;