From: Corinna Vinschen Date: Mon, 31 Aug 2015 14:56:14 +0000 (+0200) Subject: * sec_acl.cc (get_posix_access): Fix class_perm in !new_style case. X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=ca84d9b08f815f5c5c25a612c4c247e55ba42b50;p=newlib-cygwin.git * sec_acl.cc (get_posix_access): Fix class_perm in !new_style case. --- diff --git a/winsup/cygwin/sec_acl.cc b/winsup/cygwin/sec_acl.cc index 7d97fca02..e52cdb711 100644 --- a/winsup/cygwin/sec_acl.cc +++ b/winsup/cygwin/sec_acl.cc @@ -880,7 +880,8 @@ get_posix_access (PSECURITY_DESCRIPTOR psd, { lacl[pos].a_type = CLASS_OBJ; lacl[pos].a_id = ILLEGAL_GID; - lacl[pos].a_perm = class_perm | lacl[1].a_perm; + class_perm |= lacl[1].a_perm; + lacl[pos].a_perm = class_perm; } /* For ptys, fake a mask if the admins group is neither owner nor group. In that case we have an extra ACE for the admins group, and we need a