diff options
author | Steve French <sfrench@us.ibm.com> | 2007-10-01 15:59:01 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-10-01 15:59:01 -0400 |
commit | 4084973dbae9a24e58598d6cdf60f0e5e4a3cabf (patch) | |
tree | 39ffde1dc1e7de75facc58485ef9c02a0227973b /fs/cifs/cifsacl.c | |
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.c')
-rw-r--r-- | fs/cifs/cifsacl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/cifsacl.c b/fs/cifs/cifsacl.c index 90969104dd39..9b84f373af19 100644 --- a/fs/cifs/cifsacl.c +++ b/fs/cifs/cifsacl.c | |||
@@ -46,11 +46,11 @@ static int parse_sid(struct cifs_sid *psid, char *end_of_acl) | |||
46 | } | 46 | } |
47 | #ifdef CONFIG_CIFS_DEBUG2 | 47 | #ifdef CONFIG_CIFS_DEBUG2 |
48 | cFYI(1, ("revision %d num_auth %d First subauth 0x%x", | 48 | cFYI(1, ("revision %d num_auth %d First subauth 0x%x", |
49 | psid->revision, psid->num_auth, psid->sub_auth[0])); | 49 | psid->revision, psid->num_subauth, psid->sub_auth[0])); |
50 | 50 | ||
51 | /* BB add length check to make sure that we do not have huge num auths | 51 | /* BB add length check to make sure that we do not have huge num auths |
52 | and therefore go off the end */ | 52 | and therefore go off the end */ |
53 | cFYI(1, ("RID 0x%x", le32_to_cpu(psid->sub_auth[psid->num_auth]))); | 53 | cFYI(1, ("RID 0x%x", le32_to_cpu(psid->sub_auth[psid->num_subauth]))); |
54 | #endif | 54 | #endif |
55 | return 0; | 55 | return 0; |
56 | } | 56 | } |