From d860785f68c20e4460d9386c48494ada10bad77e Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Sat, 12 Dec 2020 14:16:54 +0100 Subject: [PATCH] vfs_acl_xattr: reformatting Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- source3/modules/vfs_acl_xattr.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/source3/modules/vfs_acl_xattr.c b/source3/modules/vfs_acl_xattr.c index df2c84da0a2..03c3b24866a 100644 --- a/source3/modules/vfs_acl_xattr.c +++ b/source3/modules/vfs_acl_xattr.c @@ -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; } -- 2.11.4.GIT