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:
parent
890361db59
commit
a4932d6657
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user