From 171da4d78736730557a94b44af9f2d62081b80ba Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 7 Jan 2000 06:55:36 +0000 Subject: this looks like a big commit, but it isn't really :) This fixes our netbios scope handling. We now have a 'netbios scope' option in smb.conf and the scope option is removed from make_nmb_name() this was prompted by a bug in our PDC finding code where it didn't append the scope to the query of the '*' name. (This used to be commit b563be824b8c3141c49558eced7829b48d4ab26f) --- source3/utils/nmblookup.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'source3/utils/nmblookup.c') diff --git a/source3/utils/nmblookup.c b/source3/utils/nmblookup.c index 6214c0e45b8..8e26a206ca2 100644 --- a/source3/utils/nmblookup.c +++ b/source3/utils/nmblookup.c @@ -26,8 +26,6 @@ extern int DEBUGLEVEL; -extern pstring scope; - extern struct in_addr ipzero; static BOOL use_bcast = True; @@ -178,9 +176,12 @@ int main(int argc,char *argv[]) translate_addresses = !translate_addresses; break; case 'i': - fstrcpy(scope,optarg); - strupper(scope); - break; + { + extern pstring global_scope; + pstrcpy(global_scope,optarg); + strupper(global_scope); + } + break; case 'M': find_master = True; break; -- cgit