From 6008336ffab7c6fc38ddffa614de98de88d6e706 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 19 Oct 2020 14:20:26 +0200 Subject: [PATCH] tmpfiles: no need to specify a synthetic error code if we don't propagate it --- src/tmpfiles/tmpfiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index c3c1c6d49af..2a8e89b783f 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; -- 2.47.3