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:
authorSergejs Paskevics <git-no-reply@zabbix.com>2017-02-01 12:18:51 +0300
committerSergejs Paskevics <git-no-reply@zabbix.com>2017-02-01 12:18:51 +0300
commit5a08a9f32e4c5e4f4f902347bc72c3d4f8b69e00 (patch)
tree0df2ef43670fb04db34470db5623eaaa1ed225e8 /include/zbxregexp.h
parentcdef3e82f4e63e24345254c3ba40a33c874ea487 (diff)
........S. [ZBX-11703] removed possibility to execute commit without transaction in processing LLD rules; added const qualifiers where possible to make LLD code more understandable
Diffstat (limited to 'include/zbxregexp.h')
-rw-r--r--include/zbxregexp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/zbxregexp.h b/include/zbxregexp.h
index 45a92c26db6..b00096f605d 100644
--- a/include/zbxregexp.h
+++ b/include/zbxregexp.h
@@ -54,8 +54,8 @@ void zbx_regexp_clean_expressions(zbx_vector_ptr_t *expressions);
void add_regexp_ex(zbx_vector_ptr_t *regexps, const char *name, const char *expression, int expression_type,
char exp_delimiter, int case_sensitive);
-int regexp_match_ex(zbx_vector_ptr_t *regexps, const char *string, const char *pattern, int case_sensitive);
-int regexp_sub_ex(zbx_vector_ptr_t *regexps, const char *string, const char *pattern, int case_sensitive,
+int regexp_match_ex(const zbx_vector_ptr_t *regexps, const char *string, const char *pattern, int case_sensitive);
+int regexp_sub_ex(const zbx_vector_ptr_t *regexps, const char *string, const char *pattern, int case_sensitive,
const char *output_template, char **output);
#endif /* ZABBIX_ZBXREGEXP_H */