]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tmpfiles: no need to specify a synthetic error code if we don't propagate it 17389/head
authorLennart Poettering <lennart@poettering.net>
Mon, 19 Oct 2020 12:20:26 +0000 (14:20 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 19 Oct 2020 12:22:25 +0000 (14:22 +0200)
src/tmpfiles/tmpfiles.c

index c3c1c6d49af69ad976788f9e999e86f885160fcd..2a8e89b783f2c8487835afe3e276787e72414550 100644 (file)
@@ -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;