1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

r13530: Fix from William Jojo for #1970. Make nmblookup do

a node status on all IP's when requested.
Jeremy.
This commit is contained in:
Jeremy Allison 2006-02-16 20:50:41 +00:00 committed by Gerald (Jerry) Carter
parent 7716c69729
commit 1fcac478cb

View File

@ -169,13 +169,12 @@ static BOOL query_one(const char *lookup, unsigned int lookup_type)
}
}
d_printf("%s %s<%02x>\n",inet_ntoa(ip_list[j]),lookup, lookup_type);
}
/* We can only do find_status if the ip address returned
was valid - ie. name_query returned true.
*/
if (find_status) {
do_node_status(ServerFD, lookup, lookup_type, ip_list[0]);
/* We can only do find_status if the ip address returned
was valid - ie. name_query returned true.
*/
if (find_status) {
do_node_status(ServerFD, lookup, lookup_type, ip_list[j]);
}
}
safe_free(ip_list);