summaryrefslogtreecommitdiff
path: root/source3/passdb/passdb.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/passdb/passdb.c')
-rw-r--r--source3/passdb/passdb.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c
index 6c84cccf79..6c84303947 100644
--- a/source3/passdb/passdb.c
+++ b/source3/passdb/passdb.c
@@ -152,11 +152,16 @@ NTSTATUS samu_set_unix(struct samu *user, const struct passwd *pwd)
return NT_STATUS_NO_SUCH_USER;
}
+ /* Basic properties based upon the Unix account information */
+
pdb_set_username(user, pwd->pw_name, PDB_SET);
pdb_set_fullname(user, pwd->pw_gecos, PDB_SET);
- pdb_set_unix_homedir(user, pwd->pw_dir, PDB_SET);
pdb_set_domain (user, get_global_sam_name(), PDB_DEFAULT);
+ /* save the password structure for later use */
+
+ user->unix_pw = tcopy_passwd( user, pwd );
+
/* Special case for the guest account which must have a RID of 501.
By default the guest account is a member of of the domain users
group as well as the domain guests group. Verified against