lib/util/util_pw: temporary rename of getpwnam_alloc and getpwuid_alloc.
authorGünther Deschner <gd@samba.org>
Wed, 2 Mar 2011 15:31:01 +0000 (16:31 +0100)
committerGünther Deschner <gd@samba.org>
Tue, 29 Mar 2011 23:13:06 +0000 (01:13 +0200)
Guenther

lib/util/util_pw.c

index 11e46ec4e3a48843d3c347781e1606a21a305e08..bda7e24ede86abaf19222b50749682253f0e2e8c 100644 (file)
@@ -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;