From: Ralph Boehme Date: Sat, 12 Dec 2020 13:16:54 +0000 (+0100) Subject: vfs_acl_xattr: reformatting X-Git-Tag: samba-4.14.0rc1~186 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d860785f68c20e4460d9386c48494ada10bad77e;p=thirdparty%2Fsamba.git vfs_acl_xattr: reformatting Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- 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; }