From 6e22428f278bd5241999b1fe885ccf6af84b8c93 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 21 Jan 2002 07:54:09 +0000 Subject: fix also the comment. (This used to be commit 7f7a15e09a53a03dd423d40201f037f8da049cd7) --- source3/passdb/pdb_tdb.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source3/passdb') diff --git a/source3/passdb/pdb_tdb.c b/source3/passdb/pdb_tdb.c index d7bfbb8026..a089b947f4 100644 --- a/source3/passdb/pdb_tdb.c +++ b/source3/passdb/pdb_tdb.c @@ -136,18 +136,21 @@ static BOOL init_sam_from_buffer (struct tdbsam_privates *tdb_state, } else { struct passwd *pw; + uid_t uid; /* validate the account and fill in UNIX uid and gid. Standard * getpwnam() is used instead of Get_Pwnam() as we do not need * to try case permutations */ if (!username || !(pw=getpwnam(username))) { - DEBUG(0,("tdb_sam: getpwnam_alloc(%s) return NULL. User does not exist!\n", + DEBUG(0,("tdb_sam: getpwnam(%s) return NULL. User does not exist!\n", username?username:"NULL")); ret = False; goto done; } - pdb_set_uid(sampass, pw->pw_uid); + uid_t = pw->pw_uid; gid = pw->pw_gid; + + pdb_set_uid(sampass, uid); pdb_set_gid(sampass, gid); } -- cgit