summaryrefslogtreecommitdiffstats
path: root/src/tmpfiles/tmpfiles.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 02:23:16 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 02:23:16 +0000
commit2ac0841d6fcb577cb485140d70f5b5355a45b85a (patch)
treef7ed0c18149279bfa3f52a1fe5e4aa64d897ce07 /src/tmpfiles/tmpfiles.c
parentReleasing progress-linux version 252.25-1~deb12u1~progress6.99u1. (diff)
downloadsystemd-2ac0841d6fcb577cb485140d70f5b5355a45b85a.tar.xz
systemd-2ac0841d6fcb577cb485140d70f5b5355a45b85a.zip
Merging upstream version 252.26.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--src/tmpfiles/tmpfiles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
index a186246..b44e572 100644
--- a/src/tmpfiles/tmpfiles.c
+++ b/src/tmpfiles/tmpfiles.c
@@ -2169,7 +2169,7 @@ static int item_do(
de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
if (de_fd < 0) {
- if (errno != -ENOENT)
+ if (errno != ENOENT)
q = log_error_errno(errno, "Failed to open file '%s': %m", de->d_name);
} else {
_cleanup_free_ char *de_path = NULL;