Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJurijs Klopovskis <jurijs.klopovskis@zabbix.com>2021-12-06 20:38:40 +0300
committerJurijs Klopovskis <jurijs.klopovskis@zabbix.com>2021-12-06 20:38:40 +0300
commit2a415361639af9c21168b6d019257c1e1743481c (patch)
tree9b3f68bd95f273531201de47ba4cec28b4b14fb4 /include/common.h
parent2176571af08b51427e3dcf57b4cd0892da235f38 (diff)
...G...PS. [ZBXNEXT-4922] fixed recursion limit usage
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index 76593df914c..82b2c93f254 100644
--- a/include/common.h
+++ b/include/common.h
@@ -1690,7 +1690,7 @@ char *zbx_create_token(zbx_uint64_t seed);
#define ZBX_PROBLEM_SUPPRESSED_TRUE 1
#if defined(_WINDOWS) || defined(__MINGW32__)
-#define ZBX_PCRE_RECURSION_LIMIT 2000 /* assume ~1 MB stack and ~500 bytes per recursion */
+#define ZBX_REGEXP_RECURSION_LIMIT 2000 /* assume ~1 MB stack and ~500 bytes per recursion */
#endif
int zbx_str_extract(const char *text, size_t len, char **value);