mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 12:29:32 +08:00
Fix setting saw_group_obj flag
* sec_acl.cc (get_posix_access): Only set saw_group_obj flag if we saw the ACCESS_ALLOWED_ACE. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
a69b0cef71
commit
c14215de38
@ -1,3 +1,8 @@
|
||||
2015-04-16 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* sec_acl.cc (get_posix_access): Only set saw_group_obj flag if we saw
|
||||
the ACCESS_ALLOWED_ACE.
|
||||
|
||||
2015-04-16 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Deliberatly
|
||||
|
@ -757,7 +757,8 @@ get_posix_access (PSECURITY_DESCRIPTOR psd,
|
||||
if (owner_eq_group && !saw_group_obj)
|
||||
{
|
||||
type = GROUP_OBJ;
|
||||
saw_group_obj = true;
|
||||
if (ace->Header.AceType == ACCESS_ALLOWED_ACE_TYPE)
|
||||
saw_group_obj = true;
|
||||
}
|
||||
else
|
||||
type = USER;
|
||||
|
Loading…
x
Reference in New Issue
Block a user