summaryrefslogtreecommitdiff
path: root/source3/lib/util_unixsids.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2012-03-24 15:25:48 +0100
committerJelmer Vernooij <jelmer@samba.org>2012-03-24 15:25:48 +0100
commit2a82c45f02b9f5683351ccfa1acdf2622938abc9 (patch)
tree9f1a506719246bf0d0a60e75dbd6de03faa9d40d /source3/lib/util_unixsids.c
parent43f275008f1d68c6adee461c531d73c65b6b7483 (diff)
downloadsamba-2a82c45f02b9f5683351ccfa1acdf2622938abc9.tar.gz
samba-2a82c45f02b9f5683351ccfa1acdf2622938abc9.tar.bz2
samba-2a82c45f02b9f5683351ccfa1acdf2622938abc9.zip
lib/util: Remove dummy wrapper for getgrnam().
Diffstat (limited to 'source3/lib/util_unixsids.c')
-rw-r--r--source3/lib/util_unixsids.c2
1 files changed, 1 insertions, 1 deletions
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;
}