Build precise queries to find exactly what you need
Press ESC to close
Nagios World Conference 2026: Sept. 14-17 in St. Paul, MN | Learn More
but it crashes when no host set. So please, replace
if(!(host_base_ptr = malloc(sizeof(struct host_name_list)))) { line 314
by
if(!(host_base_ptr = calloc(1, sizeof(struct host_name_list)))) {
to zeroify the structure and avoid break here
while(host_ptr->next) { line 540
jeff