From 32fd6d639a5f51f1cc5fb0e81356009a2c9df359 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 24 Mar 2012 15:26:36 +0100 Subject: lib/util: Remove dummy wrapper for getgrgid(). --- source3/torture/cmd_vfs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3') diff --git a/source3/torture/cmd_vfs.c b/source3/torture/cmd_vfs.c index 11d19184e44..715dda9da31 100644 --- a/source3/torture/cmd_vfs.c +++ b/source3/torture/cmd_vfs.c @@ -610,7 +610,7 @@ static NTSTATUS cmd_stat(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, c pwd = getpwuid(st.st_ex_uid); if (pwd != NULL) user = pwd->pw_name; else user = null_string; - grp = sys_getgrgid(st.st_ex_gid); + grp = getgrgid(st.st_ex_gid); if (grp != NULL) group = grp->gr_name; else group = null_string; @@ -681,7 +681,7 @@ static NTSTATUS cmd_fstat(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, pwd = getpwuid(st.st_ex_uid); if (pwd != NULL) user = pwd->pw_name; else user = null_string; - grp = sys_getgrgid(st.st_ex_gid); + grp = getgrgid(st.st_ex_gid); if (grp != NULL) group = grp->gr_name; else group = null_string; @@ -750,7 +750,7 @@ static NTSTATUS cmd_lstat(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, pwd = getpwuid(st.st_ex_uid); if (pwd != NULL) user = pwd->pw_name; else user = null_string; - grp = sys_getgrgid(st.st_ex_gid); + grp = getgrgid(st.st_ex_gid); if (grp != NULL) group = grp->gr_name; else group = null_string; -- cgit