diff options
author | Jeremy Allison <jra@samba.org> | 2009-09-28 11:23:30 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-09-28 11:23:30 -0700 |
commit | 2e989bab0764c298a2530a2d4c8690258eba210c (patch) | |
tree | 56199fc1f1346a0d7e96f4de5ffe4a4cee73bcca | |
parent | 80ef513e90569e5e559fa0dcb62b75423b096a89 (diff) | |
download | samba-2e989bab0764c298a2530a2d4c8690258eba210c.tar.gz samba-2e989bab0764c298a2530a2d4c8690258eba210c.tar.bz2 samba-2e989bab0764c298a2530a2d4c8690258eba210c.zip |
Second part of fix for bug #6235 - domain enumeration breaks if master browser has space in name.
Ensure we ask for the #20 name as we're using it as a server.
Jeremy.
-rw-r--r-- | source3/libsmb/libsmb_dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/libsmb_dir.c b/source3/libsmb/libsmb_dir.c index 7a6632ae4e..436b3e8e03 100644 --- a/source3/libsmb/libsmb_dir.c +++ b/source3/libsmb/libsmb_dir.c @@ -625,7 +625,7 @@ SMBC_opendir_ctx(SMBCCTX *context, /* * Get the backup list ... */ - if (!name_status_find(server, 0, 0, + if (!name_status_find(server, 0x20, 0x20, &rem_ss, buserver)) { DEBUG(0,("Could not get name of " |