diff options
author | Simo Sorce <idra@samba.org> | 2003-05-18 09:06:09 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2003-05-18 09:06:09 +0000 |
commit | a670285dedfaa07707518a778fb87bcd6fadcc48 (patch) | |
tree | f0b1b71eefb553860db1c366882425c534ec5f53 /source3/passdb/passdb.c | |
parent | 79338d85cd08433b439e79d53c6b3abdb725be62 (diff) | |
download | samba-a670285dedfaa07707518a778fb87bcd6fadcc48.tar.gz samba-a670285dedfaa07707518a778fb87bcd6fadcc48.tar.bz2 samba-a670285dedfaa07707518a778fb87bcd6fadcc48.zip |
port fixes from 3.0
(This used to be commit 0d098df8b5db02c73b859aea136d01c9ca42b17a)
Diffstat (limited to 'source3/passdb/passdb.c')
-rw-r--r-- | source3/passdb/passdb.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c index 1add2bfa7f..f34513b225 100644 --- a/source3/passdb/passdb.c +++ b/source3/passdb/passdb.c @@ -35,12 +35,6 @@ const char *get_global_sam_name(void) return global_myname(); } -/* - * This is set on startup - it defines the SID for this - * machine, and therefore the SAM database for which it is - * responsible. - */ - /************************************************************ Fill the SAM_ACCOUNT with default values. ***********************************************************/ @@ -183,7 +177,7 @@ NTSTATUS pdb_fill_sam_pw(SAM_ACCOUNT *sam_account, const struct passwd *pwd) pdb_set_unix_homedir(sam_account, pwd->pw_dir, PDB_SET); - pdb_set_domain (sam_account, lp_workgroup(), PDB_DEFAULT); + pdb_set_domain (sam_account, get_global_sam_name(), PDB_DEFAULT); /* When we get a proper uid -> SID and SID -> uid allocation mechinism, we should call it here. @@ -299,7 +293,7 @@ NTSTATUS pdb_init_sam_new(SAM_ACCOUNT **new_sam_acct, const char *username) return nt_status; } - pdb_set_domain (*new_sam_acct, lp_workgroup(), PDB_DEFAULT); + pdb_set_domain (*new_sam_acct, get_global_sam_name(), PDB_DEFAULT); /* set Domain Users by default ! */ sid_copy(&g_sid, get_global_sam_sid()); |