diff options
author | Lennart Poettering <lennart@poettering.net> | 2020-10-19 14:20:26 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2020-10-19 14:22:25 +0200 |
commit | 6008336ffab7c6fc38ddffa614de98de88d6e706 (patch) | |
tree | 0ca3bbcdfa2d839324d76148bf7e6f4562cffef3 /src/tmpfiles/tmpfiles.c | |
parent | bootspec: tweak error message (diff) | |
download | systemd-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.c | 2 |
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; |