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:
authorAndris Zeila <andris.zeila@zabbix.com>2013-07-29 11:28:25 +0400
committerAndris Zeila <andris.zeila@zabbix.com>2013-07-29 11:28:25 +0400
commite848fc483d7c440ab4bbbc66a45c1be1d280197c (patch)
tree0e701050c91298fa672c77e3f7839f218a572b59 /include/zbxregexp.h
parent25b8f54472bd570a39af5f985fa98a1a9b608ebc (diff)
...G...PS. [ZBXNEXT-1837] use dynamic allocation to store regexp name/expression
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 f5428bc9422..acd012b83ba 100644
--- a/include/zbxregexp.h
+++ b/include/zbxregexp.h
@@ -23,8 +23,8 @@
typedef struct
{
- char name[129];
- char expression[256];
+ char *name;
+ char *expression;
int expression_type;
char exp_delimiter;
unsigned char case_sensitive;