tmpfiles: no need to specify a synthetic error code if we don't propagate it

This commit is contained in:
Lennart Poettering 2020-10-19 14:20:26 +02:00
parent dfc22cb472
commit 6008336ffa
1 changed files with 1 additions and 1 deletions

View 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;