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:
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;