From 2edb49c5fc7b0daccebb2a2fe48b66ce326293c9 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 25 Jun 2024 10:28:38 +0200 Subject: [PATCH] vfs: Fix typos Signed-off-by: Volker Lendecke Reviewed-by: Ralph Boehme --- source3/modules/vfs_posixacl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/modules/vfs_posixacl.c b/source3/modules/vfs_posixacl.c index feb819de982..4eb1326bb7f 100644 --- a/source3/modules/vfs_posixacl.c +++ b/source3/modules/vfs_posixacl.c @@ -334,14 +334,14 @@ static acl_t smb_acl_to_posix(const struct smb_acl_t *acl) switch (entry->a_type) { case SMB_ACL_USER: if (acl_set_qualifier(e, &entry->info.user.uid) != 0) { - DEBUG(1, ("acl_set_qualifiier failed: %s\n", + DEBUG(1, ("acl_set_qualifier failed: %s\n", strerror(errno))); goto fail; } break; case SMB_ACL_GROUP: if (acl_set_qualifier(e, &entry->info.group.gid) != 0) { - DEBUG(1, ("acl_set_qualifiier failed: %s\n", + DEBUG(1, ("acl_set_qualifier failed: %s\n", strerror(errno))); goto fail; } -- 2.47.2