summaryrefslogtreecommitdiffstats
path: root/src/tmpfiles/tmpfiles.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2020-10-19 14:20:26 +0200
committerLennart Poettering <lennart@poettering.net>2020-10-19 14:22:25 +0200
commit6008336ffab7c6fc38ddffa614de98de88d6e706 (patch)
tree0ca3bbcdfa2d839324d76148bf7e6f4562cffef3 /src/tmpfiles/tmpfiles.c
parentbootspec: tweak error message (diff)
downloadsystemd-6008336ffab7c6fc38ddffa614de98de88d6e706.tar.xz
systemd-6008336ffab7c6fc38ddffa614de98de88d6e706.zip
tmpfiles: no need to specify a synthetic error code if we don't propagate it
Diffstat (limited to 'src/tmpfiles/tmpfiles.c')
-rw-r--r--src/tmpfiles/tmpfiles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
index c3c1c6d49a..2a8e89b783 100644
--- a/src/tmpfiles/tmpfiles.c
+++ b/src/tmpfiles/tmpfiles.c
@@ -1063,7 +1063,7 @@ static int parse_acls_from_arg(Item *item) {
if (r < 0)
log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
#else
- log_warning_errno(SYNTHETIC_ERRNO(ENOSYS), "ACLs are not supported. Ignoring");
+ log_warning("ACLs are not supported. Ignoring.");
#endif
return 0;