tmpfiles: fix wrong return value

Follow-up for 27f6aa0b71.
This commit is contained in:
Yu Watanabe 2022-09-24 10:10:51 +09:00 committed by Jan Janssen
parent 599b384924
commit e56074a212

View file

@ -1802,7 +1802,7 @@ static int empty_directory(Item *i, const char *path, CreationMode creation) {
r = chase_symlinks(path, arg_root, CHASE_SAFE|CHASE_WARN, NULL, &fd);
if (r == -ENOLINK) /* Unsafe symlink: already covered by CHASE_WARN */
return fd;
return r;
if (r == -ENOENT) {
/* Option "e" operates only on existing objects. Do not print errors about non-existent files
* or directories */