]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
vfs_acl_xattr: reformatting
authorRalph Boehme <slow@samba.org>
Sat, 12 Dec 2020 13:16:54 +0000 (14:16 +0100)
committerJeremy Allison <jra@samba.org>
Thu, 17 Dec 2020 18:56:29 +0000 (18:56 +0000)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/modules/vfs_acl_xattr.c

index df2c84da0a2ff24d2c2911e991560312a05cf8b2..03c3b24866a756e499481f6b92357ae39671a510 100644 (file)
@@ -224,14 +224,16 @@ static NTSTATUS store_acl_blob_fsp(vfs_handle_struct *handle,
 *********************************************************************/
 
 static int sys_acl_set_fd_xattr(vfs_handle_struct *handle,
-                            files_struct *fsp,
-                           SMB_ACL_TYPE_T type,
-                            SMB_ACL_T theacl)
+                               files_struct *fsp,
+                               SMB_ACL_TYPE_T type,
+                               SMB_ACL_T theacl)
 {
-       int ret = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle,
-                                               fsp,
-                                               type,
-                                               theacl);
+       int ret;
+
+       ret = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle,
+                                         fsp,
+                                         type,
+                                         theacl);
        if (ret == -1) {
                return -1;
        }