From f4868ab6467ad7e6fae78bd14b83aeae68026769 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 2 Mar 2011 16:31:01 +0100 Subject: lib/util/util_pw: temporary rename of getpwnam_alloc and getpwuid_alloc. Guenther --- lib/util/util_pw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/util') 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; -- cgit