diff options
author | Karolin Seeger <kseeger@samba.org> | 2013-02-18 10:01:21 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-02-18 22:07:39 +1100 |
commit | 38cb1410f5107f42ddea9cbf9555adb273b35b18 (patch) | |
tree | d8863c1b28572725681357107454bf6e731a0a60 | |
parent | 2ed035b5a064e21f57c89adc9c947ffa7721c600 (diff) | |
download | samba-38cb1410f5107f42ddea9cbf9555adb273b35b18.tar.gz |
vfs_gpfs: Fix typos in comments.
Signed-off-by: Karolin Seeger <kseeger@samba.org>
-rw-r--r-- | source3/modules/vfs_gpfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index 622bea4fdbb..f4db292b48b 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -359,7 +359,7 @@ static int gpfs_get_nfs4_acl(const char *fname, SMB4ACL_T **ppacl) smbace.who.uid = gace->aceWho; } - /* remove redundent deny entries */ + /* remove redundant deny entries */ if (i > 0 && gace->aceType == SMB_ACE4_ACCESS_DENIED_ACE_TYPE) { struct gpfs_ace_v4 *prev = &gacl->ace_v4[i-1]; if (prev->aceType == SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE && @@ -367,7 +367,7 @@ static int gpfs_get_nfs4_acl(const char *fname, SMB4ACL_T **ppacl) prev->aceIFlags == gace->aceIFlags && (gace->aceMask & prev->aceMask) == 0 && gace->aceWho == prev->aceWho) { - /* its redundent - skip it */ + /* it's redundant - skip it */ continue; } } |