diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-01-07 08:48:04 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-01-07 08:48:04 +0000 |
commit | 3c37bfe1aada2e161cdb3f4fc3dc907109817c97 (patch) | |
tree | ff05d49dea60bef00a7bf4a8289efa30dce2c150 /source3/param/loadparm.c | |
parent | dd9e8074f70f6077ee9aeac262f2a46a5a69bc7b (diff) | |
download | samba-3c37bfe1aada2e161cdb3f4fc3dc907109817c97.tar.gz samba-3c37bfe1aada2e161cdb3f4fc3dc907109817c97.tar.bz2 samba-3c37bfe1aada2e161cdb3f4fc3dc907109817c97.zip |
netbios scope is a DOS_STRING
(This used to be commit e42b629baa15bf9328945d641d780fc4c7b3ffe0)
Diffstat (limited to 'source3/param/loadparm.c')
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index fed05b53a1..b19cd93832 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -543,7 +543,7 @@ static struct parm_struct parm_table[] = {"workgroup", P_USTRING, P_GLOBAL, &Globals.szWorkGroup, NULL, NULL, FLAG_BASIC|FLAG_DOS_STRING}, {"netbios name", P_UGSTRING,P_GLOBAL, global_myname, NULL, NULL, FLAG_BASIC|FLAG_DOS_STRING}, {"netbios aliases", P_STRING, P_GLOBAL, &Globals.szNetbiosAliases, NULL, NULL, FLAG_DOS_STRING}, - {"netbios scope", P_UGSTRING,P_GLOBAL, global_scope, NULL, NULL, 0}, + {"netbios scope", P_UGSTRING,P_GLOBAL, global_scope, NULL, NULL, FLAG_DOS_STRING}, {"server string", P_STRING, P_GLOBAL, &Globals.szServerString, NULL, NULL, FLAG_BASIC|FLAG_DOS_STRING}, {"interfaces", P_STRING, P_GLOBAL, &Globals.szInterfaces, NULL, NULL, FLAG_BASIC}, {"bind interfaces only", P_BOOL,P_GLOBAL, &Globals.bBindInterfacesOnly,NULL, NULL, 0}, |