summaryrefslogtreecommitdiff
path: root/source3/lib/util_pw.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-06-15 00:47:52 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-06-15 00:47:52 +0000
commit9026074f6068f68725241c3e14f7f38bfa698b16 (patch)
tree4ac900ab034a9813aff43fb89c3b5010d4990290 /source3/lib/util_pw.c
parent59e0dff0c78add442cb60e72ca7cad7eb1bc7219 (diff)
downloadsamba-9026074f6068f68725241c3e14f7f38bfa698b16.tar.gz
samba-9026074f6068f68725241c3e14f7f38bfa698b16.tar.bz2
samba-9026074f6068f68725241c3e14f7f38bfa698b16.zip
Add back sys_getpwnam() and freinds to the system.c interface, but don't
use the silly cache any more. Also add group functions and fix a few callers. Andrew Bartlett (This used to be commit 41d4b94077c118ecde2bf8792b9bb7ab71c6403e)
Diffstat (limited to 'source3/lib/util_pw.c')
-rw-r--r--source3/lib/util_pw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/util_pw.c b/source3/lib/util_pw.c
index 47711788c7..9d075a05e8 100644
--- a/source3/lib/util_pw.c
+++ b/source3/lib/util_pw.c
@@ -56,7 +56,7 @@ struct passwd *getpwnam_alloc(const char *name)
{
struct passwd *temp;
- temp = getpwnam(name);
+ temp = sys_getpwnam(name);
if (!temp) {
#if 0
@@ -74,7 +74,7 @@ struct passwd *getpwuid_alloc(uid_t uid)
{
struct passwd *temp;
- temp = getpwuid(uid);
+ temp = sys_getpwuid(uid);
if (!temp) {
#if 0