From e56074a2121d2db7964321156fe522232b16034d Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 24 Sep 2022 10:10:51 +0900 Subject: [PATCH] tmpfiles: fix wrong return value Follow-up for 27f6aa0b7112024c1236957abd909071b06869a8. --- 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 0031b6ee49..705721ffbd 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -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 */