1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

Use sys_getgrnam not getgrnam. Pointed out by Herb.

Jeremy.
(This used to be commit 43eec65170)
This commit is contained in:
Jeremy Allison 2008-07-24 11:56:49 -07:00
parent 890361db59
commit a4932d6657

View File

@ -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;
}