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:
authorAlexander Vladishev <aleksander.vladishev@zabbix.com>2016-09-07 11:59:09 +0300
committerAlexander Vladishev <aleksander.vladishev@zabbix.com>2016-09-07 11:59:09 +0300
commitbb27dfb18498be1ac433e04b71d6ace1f0b021b6 (patch)
treeb131942d72fc85389914af304200381329d0aba4 /include/alias.h
parent96810c10a1d18aa59647e2e51b2f95d528bbe678 (diff)
...G...... [ZBXNEXT-3206] added support of aliases with alias[*]:key<[*]> syntax
Diffstat (limited to 'include/alias.h')
-rw-r--r--include/alias.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/alias.h b/include/alias.h
index 6e07ec24a16..95ec768f569 100644
--- a/include/alias.h
+++ b/include/alias.h
@@ -20,12 +20,10 @@
#ifndef ZABBIX_ALIAS_H
#define ZABBIX_ALIAS_H
-#define MAX_ALIAS_NAME 120
-
typedef struct zbx_alias
{
struct zbx_alias *next;
- char name[MAX_ALIAS_NAME];
+ char *name;
char *value;
}
ALIAS;