diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/util.c | 2 | ||||
-rw-r--r-- | source3/lib/util_unixsids.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 81d476b1da..9d3d787d63 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -844,7 +844,7 @@ gid_t nametogid(const char *name) if ((p != name) && (*p == '\0')) return g; - grp = sys_getgrnam(name); + grp = getgrnam(name); if (grp) return(grp->gr_gid); return (gid_t)-1; 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; } |