summaryrefslogtreecommitdiffstats
path: root/source/libsmb
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-14 16:45:24 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-14 16:45:24 +0000
commit53805112f1a301f77cda93b68e6fa3054895f20f (patch)
tree663a0fba5025adfc2456c25a97a044c0533f38e5 /source/libsmb
parent8ff4df1f0e528eb96a11c0de48b01f5745d08737 (diff)
downloadsamba-53805112f1a301f77cda93b68e6fa3054895f20f.tar.gz
samba-53805112f1a301f77cda93b68e6fa3054895f20f.tar.xz
samba-53805112f1a301f77cda93b68e6fa3054895f20f.zip
set recursion desired for bcast name query
Diffstat (limited to 'source/libsmb')
-rw-r--r--source/libsmb/namequery.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libsmb/namequery.c b/source/libsmb/namequery.c
index 500618bd8a6..e95302fcd0c 100644
--- a/source/libsmb/namequery.c
+++ b/source/libsmb/namequery.c
@@ -446,7 +446,7 @@ static BOOL resolve_bcast(char *name, struct in_addr *return_ip, int name_type)
/* Done this way to fix compiler error on IRIX 5.x */
sendto_ip = *iface_bcast(*iface_n_ip(i));
iplist = name_query(sock, name, name_type, True,
- False, sendto_ip, &count, NULL);
+ True, sendto_ip, &count, NULL);
if(iplist != NULL) {
*return_ip = iplist[0];
free((char *)iplist);