diff options
author | Simo Sorce <idra@samba.org> | 2002-01-21 07:51:26 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2002-01-21 07:51:26 +0000 |
commit | 5c0bb0487bec00df494b72b64ddf274f42bfefea (patch) | |
tree | 0382ba3476ce896aa91c6d64559b7b3c111dfecb | |
parent | 1cd431b8f17e5ac394436d31f64032387ca11930 (diff) | |
download | samba-5c0bb0487bec00df494b72b64ddf274f42bfefea.tar.gz samba-5c0bb0487bec00df494b72b64ddf274f42bfefea.tar.xz samba-5c0bb0487bec00df494b72b64ddf274f42bfefea.zip |
replace getpwnam_alloc with plain getpwnam.
We are not going to reuse any getpw* call, so the extra alloc,copy and free
only uses extra memory and extra cpu time for nothing.
-rw-r--r-- | source/passdb/pdb_tdb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source/passdb/pdb_tdb.c b/source/passdb/pdb_tdb.c index 3d3b620f504..d7bfbb80267 100644 --- a/source/passdb/pdb_tdb.c +++ b/source/passdb/pdb_tdb.c @@ -140,7 +140,7 @@ static BOOL init_sam_from_buffer (struct tdbsam_privates *tdb_state, * getpwnam() is used instead of Get_Pwnam() as we do not need * to try case permutations */ - if (!username || !(pw=getpwnam_alloc(username))) { + if (!username || !(pw=getpwnam(username))) { DEBUG(0,("tdb_sam: getpwnam_alloc(%s) return NULL. User does not exist!\n", username?username:"NULL")); ret = False; @@ -149,7 +149,6 @@ static BOOL init_sam_from_buffer (struct tdbsam_privates *tdb_state, pdb_set_uid(sampass, pw->pw_uid); gid = pw->pw_gid; pdb_set_gid(sampass, gid); - passwd_free(&pw); } pdb_set_logon_time(sampass, logon_time); |