summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/zabbix_agent/zabbix_agentd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/zabbix_agent/zabbix_agentd.c b/src/zabbix_agent/zabbix_agentd.c
index 24b1fd20..e7911aaf 100644
--- a/src/zabbix_agent/zabbix_agentd.c
+++ b/src/zabbix_agent/zabbix_agentd.c
@@ -419,6 +419,7 @@ int main(int argc, char **argv)
char host[128];
int ch;
+ char *s;
static struct sigaction phan;
@@ -482,7 +483,8 @@ int main(int argc, char **argv)
}
/* Initialize thread for active checks */
- pids[CONFIG_AGENTD_FORKS-1] = child_active_make(CONFIG_AGENTD_FORKS-1, CONFIG_HOSTS_ALLOWED, CONFIG_SERVER_PORT);
+ s=strtok(CONFIG_HOSTS_ALLOWED,",");
+ pids[CONFIG_AGENTD_FORKS-1] = child_active_make(CONFIG_AGENTD_FORKS-1, s, CONFIG_SERVER_PORT);
parent=1;