From 2a82c45f02b9f5683351ccfa1acdf2622938abc9 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 24 Mar 2012 15:25:48 +0100 Subject: lib/util: Remove dummy wrapper for getgrnam(). --- source3/lib/util_unixsids.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/util_unixsids.c') diff --git a/source3/lib/util_unixsids.c b/source3/lib/util_unixsids.c index 8db66d6e89..4a38c57025 100644 --- a/source3/lib/util_unixsids.c +++ b/source3/lib/util_unixsids.c @@ -103,7 +103,7 @@ bool lookup_unix_group_name(const char *name, struct dom_sid *sid) { struct group *grp; - grp = sys_getgrnam(name); + grp = getgrnam(name); if (grp == NULL) { return False; } -- cgit