summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorDan Carpenter via samba-technical <samba-technical@lists.samba.org>2019-11-26 15:11:15 +0300
committerSteve French <stfrench@microsoft.com>2019-11-27 11:31:49 -0600
commit68464b88cc0a735eaacd2c69beffb85d36f25292 (patch)
tree16d280f130408d919acd1cf60cc5c255694fa5f1 /fs
parent1656a07a89a82a80d8e9fdf0e37821c2584d88d3 (diff)
CIFS: fix a white space issue in cifs_get_inode_info()
We accidentally messed up the indenting on this if statement. Fixes: 16c696a6c300 ("CIFS: refactor cifs_get_inode_info()") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Aurelien Aptel <aaptel@suse.com> Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/cifs/inode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c
index 1fec2e7d796a..8a76195e8a69 100644
--- a/fs/cifs/inode.c
+++ b/fs/cifs/inode.c
@@ -967,7 +967,8 @@ handle_mnt_opt:
}
} else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
rc = cifs_acl_to_fattr(cifs_sb, &fattr, *inode, false,
- full_path, fid); if (rc) {
+ full_path, fid);
+ if (rc) {
cifs_dbg(FYI, "%s: Getting ACL failed with error: %d\n",
__func__, rc);
goto out;