Merge pull request #1566 from hydrapolic/master

plugins: check_http: Increase regexp limit
This commit is contained in:
Sven Nierlein 2021-04-07 17:15:20 +02:00 committed by GitHub
commit 4ad33d9f27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;