From: Volker Lendecke Date: Tue, 25 Jun 2024 08:28:38 +0000 (+0200) Subject: vfs: Fix typos X-Git-Tag: tdb-1.4.11~264 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=2edb49c5fc7b0daccebb2a2fe48b66ce326293c9;p=thirdparty%2Fsamba.git vfs: Fix typos Signed-off-by: Volker Lendecke Reviewed-by: Ralph Boehme --- 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; }