Skip to content

Commit 68464b8

Browse files
Dan Carpenter via samba-technicalsmfrench
authored andcommitted
CIFS: fix a white space issue in cifs_get_inode_info()
We accidentally messed up the indenting on this if statement. Fixes: 16c696a ("CIFS: refactor cifs_get_inode_info()") Signed-off-by: Dan Carpenter <[email protected]> Reviewed-by: Aurelien Aptel <[email protected]> Signed-off-by: Steve French <[email protected]>
1 parent 1656a07 commit 68464b8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fs/cifs/inode.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,8 @@ cifs_get_inode_info(struct inode **inode,
967967
}
968968
} else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
969969
rc = cifs_acl_to_fattr(cifs_sb, &fattr, *inode, false,
970-
full_path, fid); if (rc) {
970+
full_path, fid);
971+
if (rc) {
971972
cifs_dbg(FYI, "%s: Getting ACL failed with error: %d\n",
972973
__func__, rc);
973974
goto out;

0 commit comments

Comments
 (0)