summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-01-23 12:59:24 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-01-23 12:59:24 +0000
commit158efc3aa2060e21f40e231a1e8aa945b6a3ab71 (patch)
tree3d40e855783ac527f14c92ac64dcd96647267fab /source3/lib/util.c
parent44dd648a646e58ad69f250dcd23fe56d7885efd2 (diff)
downloadsamba-158efc3aa2060e21f40e231a1e8aa945b6a3ab71.tar.gz
samba-158efc3aa2060e21f40e231a1e8aa945b6a3ab71.tar.bz2
samba-158efc3aa2060e21f40e231a1e8aa945b6a3ab71.zip
getpwnam -> getpwnam_alloc.
idra has promised not to revert these this time :-) (This used to be commit f556ad67e82518f5a024ffe9184ff9430ab5c541)
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r--source3/lib/util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index f598f0aaa4..97ff4e24a0 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -1091,9 +1091,11 @@ uid_t nametouid(char *name)
if (winbind_nametouid(&u, name))
return u;
- pass = sys_getpwnam(name);
- if (pass)
+ pass = getpwnam_alloc(name);
+ if (pass) {
return(pass->pw_uid);
+ passwd_free(&pass);
+ }
return (uid_t)-1;
}