diff options
author | Steve French <sfrench@us.ibm.com> | 2007-10-01 19:59:01 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-10-01 19:59:01 +0000 |
commit | 4084973dbae9a24e58598d6cdf60f0e5e4a3cabf (patch) | |
tree | 39ffde1dc1e7de75facc58485ef9c02a0227973b /fs/cifs/cifsacl.h | |
parent | 92ad9b93cd268371d1fc0edbd09383cc1c59be34 (diff) |
[CIFS] change misleading field name
num_auth is really num_subauth in ACL terminology
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifsacl.h')
-rw-r--r-- | fs/cifs/cifsacl.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/fs/cifs/cifsacl.h b/fs/cifs/cifsacl.h index b975ae11303..5e7b56738cc 100644 --- a/fs/cifs/cifsacl.h +++ b/fs/cifs/cifsacl.h @@ -33,10 +33,9 @@ struct cifs_ntsd { struct cifs_sid { __u8 revision; /* revision level */ - __u8 num_auth; + __u8 num_subauth; __u8 authority[6]; - __u32 sub_auth[4]; - __u32 rid; + __u32 sub_auth[0]; /* sub_auth[num_subauth] */ } __attribute__((packed)); struct cifs_acl { @@ -54,10 +53,9 @@ struct cifs_ntace { struct cifs_ace { __u8 revision; /* revision level */ - __u8 num_auth; + __u8 num_subauth; __u8 authority[6]; - __u32 sub_auth[4]; - __u32 rid; + __u32 sub_auth[0]; } __attribute__((packed)); /* everyone */ |