From: Yu Watanabe Date: Wed, 5 Nov 2025 09:17:20 +0000 (+0900) Subject: tar-util: fix typo X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f91fd8d5a1cb512e1cf7bd305a714560873e89ab;p=thirdparty%2Fsystemd.git tar-util: fix typo Follow-up for 4ded7f7a434c59534f65a0f9d391c55961eb110d. --- diff --git a/src/shared/tar-util.c b/src/shared/tar-util.c index 05dd4cd9fc9..2312e7ff998 100644 --- a/src/shared/tar-util.c +++ b/src/shared/tar-util.c @@ -529,7 +529,7 @@ static int archive_entry_read_acl( r = acl_set_perm(p, ACL_EXECUTE, permset & ARCHIVE_ENTRY_ACL_EXECUTE); if (r < 0) - return log_error_errno(r, "Failed to set ACL entry excute bit: %m"); + return log_error_errno(r, "Failed to set ACL entry execute bit: %m"); if (sym_acl_set_permset(e, p) < 0) return log_error_errno(errno, "Failed to set ACL entry permission set: %m");