summaryrefslogtreecommitdiff
path: root/source3/libsmb
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1997-11-19 23:50:02 +0000
committerAndrew Tridgell <tridge@samba.org>1997-11-19 23:50:02 +0000
commit6a6653f8152a0caf523639eca913f22431b2211a (patch)
tree7149c9704aa6869adbf8bebc5ef27ec4107c6cff /source3/libsmb
parente4f9da8226fcd38106cba08dbe3c6ba2a62675f9 (diff)
downloadsamba-6a6653f8152a0caf523639eca913f22431b2211a.tar.gz
samba-6a6653f8152a0caf523639eca913f22431b2211a.tar.bz2
samba-6a6653f8152a0caf523639eca913f22431b2211a.zip
changed nmblookup to only set recursion_desired in queries if the -R
option is used. (This used to be commit 4561b8242e12c63401d008e7fdb2442457bd366d)
Diffstat (limited to 'source3/libsmb')
-rw-r--r--source3/libsmb/namequery.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/namequery.c b/source3/libsmb/namequery.c
index 55f70be122..15bf58bc55 100644
--- a/source3/libsmb/namequery.c
+++ b/source3/libsmb/namequery.c
@@ -214,7 +214,7 @@ BOOL name_query(int fd,char *name,int name_type,
nmb->header.response = False;
nmb->header.nm_flags.bcast = bcast;
nmb->header.nm_flags.recursion_available = False;
- nmb->header.nm_flags.recursion_desired = True;
+ nmb->header.nm_flags.recursion_desired = recurse;
nmb->header.nm_flags.trunc = False;
nmb->header.nm_flags.authoritative = False;
nmb->header.rcode = 0;