From: Jim McDonough Date: Tue, 4 Jan 2005 20:02:56 +0000 (+0000) Subject: r4514: Fix for bugzilla 1770. Remove READ_ATTRIBUTES from GENERIC_EXECUTE, otherwise X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~5450 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8d9dc7d543fd347e47d04157064a2f92fb5c99db;p=thirdparty%2Fsamba.git r4514: Fix for bugzilla 1770. Remove READ_ATTRIBUTES from GENERIC_EXECUTE, otherwise modification of an ACL that contains an ACE with execute only will cause that to be upgraded to read/execute. Side effect is that dirs/files with execute only show up as special permissions, which is still correct. --- diff --git a/source/include/smb.h b/source/include/smb.h index 49d3d29ac03..a7db0c0a868 100644 --- a/source/include/smb.h +++ b/source/include/smb.h @@ -1066,7 +1066,7 @@ struct bitmap { #define FILE_GENERIC_WRITE (STANDARD_RIGHTS_WRITE_ACCESS|FILE_WRITE_DATA|FILE_WRITE_ATTRIBUTES|\ FILE_WRITE_EA|FILE_APPEND_DATA|SYNCHRONIZE_ACCESS) -#define FILE_GENERIC_EXECUTE (STANDARD_RIGHTS_EXECUTE_ACCESS|FILE_READ_ATTRIBUTES|\ +#define FILE_GENERIC_EXECUTE (STANDARD_RIGHTS_EXECUTE_ACCESS|\ FILE_EXECUTE|SYNCHRONIZE_ACCESS) /* Mapping of access rights to UNIX perms. */