From a4932d66576be2a514c534131ae09614e061c621 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 24 Jul 2008 11:56:49 -0700 Subject: [PATCH 1/1] Use sys_getgrnam not getgrnam. Pointed out by Herb. Jeremy. (This used to be commit 43eec6517023e7865618791c231e54cc1b800ceb) --- source3/passdb/util_unixsids.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/passdb/util_unixsids.c b/source3/passdb/util_unixsids.c index 8c92f957780..83a5f5cab47 100644 --- a/source3/passdb/util_unixsids.c +++ b/source3/passdb/util_unixsids.c @@ -93,7 +93,7 @@ bool lookup_unix_group_name(const char *name, DOM_SID *sid) { struct group *grp; - grp = getgrnam(name); + grp = sys_getgrnam(name); if (grp == NULL) { return False; } -- 2.34.1