OSDN Git Service

CIFS: fix a white space issue in cifs_get_inode_info()
authorDan Carpenter via samba-technical <samba-technical@lists.samba.org>
Tue, 26 Nov 2019 12:11:15 +0000 (15:11 +0300)
committerSteve French <stfrench@microsoft.com>
Wed, 27 Nov 2019 17:31:49 +0000 (11:31 -0600)
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>
fs/cifs/inode.c

index 1fec2e7..8a76195 100644 (file)
@@ -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;