summaryrefslogtreecommitdiff
path: root/lib/util/util_pw.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2011-03-02 16:31:01 +0100
committerGünther Deschner <gd@samba.org>2011-03-30 01:13:06 +0200
commitf4868ab6467ad7e6fae78bd14b83aeae68026769 (patch)
treeb22997689ce41f0d357b25efdcbf1b885bf70652 /lib/util/util_pw.c
parent0c5214e2eb6249914230f092fe35dfa49da24c34 (diff)
downloadsamba-f4868ab6467ad7e6fae78bd14b83aeae68026769.tar.gz
samba-f4868ab6467ad7e6fae78bd14b83aeae68026769.tar.bz2
samba-f4868ab6467ad7e6fae78bd14b83aeae68026769.zip
lib/util/util_pw: temporary rename of getpwnam_alloc and getpwuid_alloc.
Guenther
Diffstat (limited to 'lib/util/util_pw.c')
-rw-r--r--lib/util/util_pw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/util_pw.c b/lib/util/util_pw.c
index 11e46ec4e3..bda7e24ede 100644
--- a/lib/util/util_pw.c
+++ b/lib/util/util_pw.c
@@ -40,7 +40,7 @@ static struct passwd *alloc_copy_passwd(TALLOC_CTX *mem_ctx,
return ret;
}
-struct passwd *getpwnam_alloc(TALLOC_CTX *mem_ctx, const char *name)
+struct passwd *_getpwnam_alloc(TALLOC_CTX *mem_ctx, const char *name)
{
struct passwd *temp;
@@ -58,7 +58,7 @@ struct passwd *getpwnam_alloc(TALLOC_CTX *mem_ctx, const char *name)
return alloc_copy_passwd(mem_ctx, temp);
}
-struct passwd *getpwuid_alloc(TALLOC_CTX *mem_ctx, uid_t uid)
+struct passwd *_getpwuid_alloc(TALLOC_CTX *mem_ctx, uid_t uid)
{
struct passwd *temp;