mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
tmpfiles: mostly revert 71044f609b
Add a comment why returning a positive error is OK and intended in this case. (It's still a nasty hack to do this though!)
This commit is contained in:
parent
f0bc504794
commit
3ea40b7810
@ -734,10 +734,11 @@ static int path_set_acl(const char *path, acl_type_t type, acl_t acl, bool modif
|
||||
|
||||
r = acl_set_file(path, type, dup);
|
||||
if (r < 0)
|
||||
return log_error_errno(errno,
|
||||
"Setting %s ACL \"%s\" on %s failed: %m",
|
||||
type == ACL_TYPE_ACCESS ? "access" : "default",
|
||||
strna(t), path);
|
||||
/* Return positive to indicate we already warned */
|
||||
return -log_error_errno(errno,
|
||||
"Setting %s ACL \"%s\" on %s failed: %m",
|
||||
type == ACL_TYPE_ACCESS ? "access" : "default",
|
||||
strna(t), path);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user