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:
authorAlex Kalimulin <aleksandrs.kalimulins@zabbix.com>2018-11-27 17:26:51 +0300
committerAlex Kalimulin <aleksandrs.kalimulins@zabbix.com>2018-11-27 17:26:51 +0300
commit88a6f7ed794e806b4fa0d582e9cbf78896eb1626 (patch)
treeeaae56c4c5f8dfef5939b576335beb214a26d1a4 /include/zbxregexp.h
parent8d82153d5cc80d1af181d1ffa5394dda81c72e50 (diff)
...G....S. [ZBX-15178] fixed wrong behaviour when referencing unexisting capture groups in item regexp preprocessing, general pcre code improvements
Diffstat (limited to 'include/zbxregexp.h')
-rw-r--r--include/zbxregexp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zbxregexp.h b/include/zbxregexp.h
index 79409bf9b83..813c564de34 100644
--- a/include/zbxregexp.h
+++ b/include/zbxregexp.h
@@ -37,7 +37,7 @@ typedef struct
zbx_expression_t;
/* regular expressions */
-int zbx_regexp_compile(const char *pattern, zbx_regexp_t **regexp, const char **error);
+int zbx_regexp_compile(const char *pattern, zbx_regexp_t **regexp, const char **err_msg_static);
int zbx_regexp_compile_ext(const char *pattern, zbx_regexp_t **regexp, int flags, const char **error);
void zbx_regexp_free(zbx_regexp_t *regexp);
int zbx_regexp_match_precompiled(const char *string, const zbx_regexp_t *regexp);