mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 04:33:26 +02:00
cifs: Fix cifsacl ACE mask for group and others.
A two line fix which I made while testing my prev fix with cifsacl mode conversions seem to have gone missing in the final fix that was submitted. This is that fix. Signed-off-by: Shyam Prasad N <sprasad@microsoft.com> Signed-off-by: Steve French <stfrench@microsoft.com>
This commit is contained in:
committed by
Steve French
parent
40f077a02b
commit
c12ead71e8
@@ -31,8 +31,8 @@
|
||||
#define EXEC_BIT 0x1
|
||||
|
||||
#define ACL_OWNER_MASK 0700
|
||||
#define ACL_GROUP_MASK 0770
|
||||
#define ACL_EVERYONE_MASK 0777
|
||||
#define ACL_GROUP_MASK 0070
|
||||
#define ACL_EVERYONE_MASK 0007
|
||||
|
||||
#define UBITSHIFT 6
|
||||
#define GBITSHIFT 3
|
||||
|
Reference in New Issue
Block a user