From: Volker Lendecke Date: Fri, 25 Apr 2025 07:38:59 +0000 (+0200) Subject: vfs: Fix some whitespace X-Git-Tag: tevent-0.17.0~204 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=38be1103a4cc90af7d3b8c631b51ed8f66a0c0e2;p=thirdparty%2Fsamba.git vfs: Fix some whitespace Signed-off-by: Volker Lendecke Reviewed-by: Stefan Metzmacher --- diff --git a/source3/modules/vfs_fake_acls.c b/source3/modules/vfs_fake_acls.c index d2b96976582..35aa0f40125 100644 --- a/source3/modules/vfs_fake_acls.c +++ b/source3/modules/vfs_fake_acls.c @@ -1,4 +1,4 @@ -/* +/* * Fake ACLs VFS module. Implements passthrough operation of all VFS * calls to disk functions, except for file ownership and ACLs, which * are stored in xattrs. @@ -11,12 +11,12 @@ * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ @@ -277,7 +277,7 @@ static SMB_ACL_T fake_acls_blob2acl(DATA_BLOB *blob, TALLOC_CTX *mem_ctx) return NULL; } - ndr_err = ndr_pull_struct_blob(blob, acl, acl, + ndr_err = ndr_pull_struct_blob(blob, acl, acl, (ndr_pull_flags_fn_t)ndr_pull_smb_acl_t); if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { @@ -293,7 +293,7 @@ static DATA_BLOB fake_acls_acl2blob(TALLOC_CTX *mem_ctx, SMB_ACL_T acl) { enum ndr_err_code ndr_err; DATA_BLOB blob; - ndr_err = ndr_push_struct_blob(&blob, mem_ctx, acl, + ndr_err = ndr_push_struct_blob(&blob, mem_ctx, acl, (ndr_push_flags_fn_t)ndr_push_smb_acl_t); if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { @@ -314,7 +314,7 @@ static SMB_ACL_T fake_acls_sys_acl_get_fd(struct vfs_handle_struct *handle, const char *name = NULL; struct smb_acl_t *acl = NULL; TALLOC_CTX *frame = talloc_stackframe(); - + switch (type) { case SMB_ACL_TYPE_ACCESS: name = FAKE_ACL_ACCESS_XATTR; @@ -701,7 +701,7 @@ static struct vfs_fn_pointers vfs_fake_acls_fns = { .sys_acl_delete_def_fd_fn = fake_acls_sys_acl_delete_def_fd, .lchown_fn = fake_acls_lchown, .fchown_fn = fake_acls_fchown, - + }; static_decl_vfs;