]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
vfs: Fix typos
authorVolker Lendecke <vl@samba.org>
Tue, 25 Jun 2024 08:28:38 +0000 (10:28 +0200)
committerRalph Boehme <slow@samba.org>
Fri, 28 Jun 2024 13:26:24 +0000 (13:26 +0000)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source3/modules/vfs_posixacl.c

index feb819de98259dc176651e86cde45a5089e67c27..4eb1326bb7f1de3ebf34a3be15b8b1b033f89c9e 100644 (file)
@@ -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;
                        }