From 732027b87a25e1b0d2df3335bab95be90b6cc984 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 13 Apr 2006 12:03:05 +0000 Subject: r15071: fix typo metze (This used to be commit fde8922947551f5f7d50607c5c83feba062138c8) --- source4/ntvfs/posix/pvfs_acl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/ntvfs/posix/pvfs_acl.c b/source4/ntvfs/posix/pvfs_acl.c index 90c357934c..c2afdbec24 100644 --- a/source4/ntvfs/posix/pvfs_acl.c +++ b/source4/ntvfs/posix/pvfs_acl.c @@ -242,7 +242,7 @@ NTSTATUS pvfs_acl_set(struct pvfs_state *pvfs, return NT_STATUS_ACCESS_DENIED; } sd->group_sid = new_sd->group_sid; - status = sidmap_sid_to_unixgid(pvfs->sidmap, sd->owner_sid, &gid); + status = sidmap_sid_to_unixgid(pvfs->sidmap, sd->group_sid, &gid); if (!NT_STATUS_IS_OK(status)) { return status; } -- cgit