From: Dan Carpenter via samba-technical Date: Tue, 26 Nov 2019 12:11:15 +0000 (+0300) Subject: CIFS: fix a white space issue in cifs_get_inode_info() X-Git-Tag: for-linus-20191205~64^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=68464b88cc0a735eaacd2c69beffb85d36f25292;p=linux-2.6-block.git 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 Reviewed-by: Aurelien Aptel Signed-off-by: Steve French --- 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;