diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-02 13:55:42 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-02 13:55:42 +0000 |
commit | ee8546342d5be90e730372b985710d764564b124 (patch) | |
tree | ed969df70a792edc0f885e9dd00df92bb800c109 /source/param | |
parent | a85ae6e0ae39530a96e8b86ab868cfd7ea5bc967 (diff) | |
download | samba-ee8546342d5be90e730372b985710d764564b124.tar.gz samba-ee8546342d5be90e730372b985710d764564b124.tar.xz samba-ee8546342d5be90e730372b985710d764564b124.zip |
split the username in the vuser structure into a separate
userdom_struct. As the name implies this also contains a domain
(unused at the moment).
This will be important shortly, as operation in appliance mode needs
the domain to be always carried with the username.
Diffstat (limited to 'source/param')
-rw-r--r-- | source/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c index ff19f34a0e9..1294eda45cd 100644 --- a/source/param/loadparm.c +++ b/source/param/loadparm.c @@ -995,7 +995,7 @@ static void init_globals(void) Globals.shmem_size = SHMEM_SIZE; Globals.stat_cache_size = 50; /* Number of stat translations we'll keep */ Globals.announce_as = ANNOUNCE_AS_NT_SERVER; - Globals.bUnixRealname = False; + Globals.bUnixRealname = True; #if (defined(HAVE_NETGROUP) && defined(WITH_AUTOMOUNT)) Globals.bNISHomeMap = False; #ifdef WITH_NISPLUS_HOME |