diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-06 23:57:22 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:48:37 +0100 |
commit | c5bf20c5fe7eaa04cd11a7ce4f365aa6ffd7b124 (patch) | |
tree | a8f2d25736e2edb08fc4b03b21f3a2949b1e2117 /source4/utils | |
parent | 04304808cabd0f05a5ff5bf23d8fd950eff8d6f3 (diff) | |
download | samba-c5bf20c5fe7eaa04cd11a7ce4f365aa6ffd7b124.tar.gz samba-c5bf20c5fe7eaa04cd11a7ce4f365aa6ffd7b124.tar.bz2 samba-c5bf20c5fe7eaa04cd11a7ce4f365aa6ffd7b124.zip |
r26325: Remove use of global_loadparm in netif.
(This used to be commit e452cb28594f23add7c00247ed39e8323aea78a6)
Diffstat (limited to 'source4/utils')
-rw-r--r-- | source4/utils/nmblookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/utils/nmblookup.c b/source4/utils/nmblookup.c index c0fb31a21f..9f121390f6 100644 --- a/source4/utils/nmblookup.c +++ b/source4/utils/nmblookup.c @@ -241,9 +241,9 @@ static bool process_one(const char *name, int nbt_port) status = do_node_query(nbtsock, options.unicast_address, nbt_port, node_name, node_type, false); } else { - int i, num_interfaces = iface_count(); + int i, num_interfaces = iface_count(global_loadparm); for (i=0;i<num_interfaces;i++) { - const char *bcast = iface_n_bcast(i); + const char *bcast = iface_n_bcast(global_loadparm, i); if (bcast == NULL) continue; status = do_node_query(nbtsock, bcast, nbt_port, node_name, node_type, true); |