Aggregation items not working on redhat or solaris
Modifying ./src/zabbix_server/poller/checks_aggregate.c
and changing occurences of
num++;
to
*num+=1;
in evaluate_one function fixes the problem.
Modifying ./src/zabbix_server/poller/checks_aggregate.c
and changing occurences of
num++;
to
*num+=1;
in evaluate_one function fixes the problem.
Comment