check_curl: Increase regexp limit (to 1024 as in check_http)

This commit is contained in:
Andreas Baumann 2021-04-08 14:07:20 +02:00
parent f6fd14e886
commit f90aec83cb

View file

@ -117,7 +117,7 @@ typedef enum curlhelp_ssl_library {
enum {
REGS = 2,
MAX_RE_SIZE = 256
MAX_RE_SIZE = 1024
};
#include "regex.h"
regex_t preg;