diff options
author | Samba Release Account <samba-bugs@samba.org> | 1996-11-06 20:14:24 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1996-11-06 20:14:24 +0000 |
commit | c97bb2f272c6fc4310a367c72b8cc5113eaf5397 (patch) | |
tree | 3d0295a8b12c659750f8d1cf99caecc7a9387c31 | |
parent | 351b375693295f53d4d28407978343f43b20c4da (diff) | |
download | samba-c97bb2f272c6fc4310a367c72b8cc5113eaf5397.tar.gz samba-c97bb2f272c6fc4310a367c72b8cc5113eaf5397.tar.bz2 samba-c97bb2f272c6fc4310a367c72b8cc5113eaf5397.zip |
nmblookup was looking for 0x1b (domain master browser) not 0x1d (local
master browser) names with the -M switch.
lkcl
(This used to be commit f27a9ccc972432a8a49dc0f0290751971d5699cd)
-rw-r--r-- | source3/utils/nmblookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/nmblookup.c b/source3/utils/nmblookup.c index ccdbec45e6..c969276838 100644 --- a/source3/utils/nmblookup.c +++ b/source3/utils/nmblookup.c @@ -179,7 +179,7 @@ int main(int argc,char *argv[]) strcpy(lookup,"\01\02__MSBROWSE__\02"); lookup_type = 1; } else { - lookup_type = 0x1b; + lookup_type = 0x1d; } } |