diff options
author | Steve French <sfrench@us.ibm.com> | 2005-11-30 00:22:19 -0500 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-11-30 00:22:19 -0500 |
commit | 2a138ebb012ac42c082ae8b40c87c1f265664391 (patch) | |
tree | 181d9e6de5edd82eaf7d36c9946f93f68945ca2c /fs/cifs/inode.c | |
parent | 606c0dafbe88102d64c1253caed8a2c36987070f (diff) |
[CIFS] Missing parenthesis and typo in previous fix
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/inode.c')
-rw-r--r-- | fs/cifs/inode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 053c1cadf703..e8773461c7f7 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c | |||
@@ -778,6 +778,7 @@ int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode) | |||
778 | current->fsgid; | 778 | current->fsgid; |
779 | } | 779 | } |
780 | } | 780 | } |
781 | } | ||
781 | } | 782 | } |
782 | kfree(full_path); | 783 | kfree(full_path); |
783 | FreeXid(xid); | 784 | FreeXid(xid); |
@@ -1124,7 +1125,7 @@ int cifs_setattr(struct dentry *direntry, struct iattr *attrs) | |||
1124 | cifs_sb = CIFS_SB(direntry->d_inode->i_sb); | 1125 | cifs_sb = CIFS_SB(direntry->d_inode->i_sb); |
1125 | pTcon = cifs_sb->tcon; | 1126 | pTcon = cifs_sb->tcon; |
1126 | 1127 | ||
1127 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM == 0) { | 1128 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) { |
1128 | /* check if we have permission to change attrs */ | 1129 | /* check if we have permission to change attrs */ |
1129 | rc = inode_change_ok(direntry->d_inode, attrs); | 1130 | rc = inode_change_ok(direntry->d_inode, attrs); |
1130 | if(rc < 0) { | 1131 | if(rc < 0) { |