summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2023-03-30 13:13:57 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2023-03-30 14:52:13 +0900
commit52576a7503aa8d321f19ae2d6f2d0375074a0716 (patch)
tree01c14e83e8494ef642ec946ed2e1a48c607f923e /src
parent62c72c60b5e6c0712a45b1feccc6cc18151efa9c (diff)
downloadsystemd-52576a7503aa8d321f19ae2d6f2d0375074a0716.tar.gz
chase: fix comment
Diffstat (limited to 'src')
-rw-r--r--src/basic/chase.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/chase.c b/src/basic/chase.c
index 6c02aeab8b..2873aa9fac 100644
--- a/src/basic/chase.c
+++ b/src/basic/chase.c
@@ -195,7 +195,7 @@ int chaseat(
}
/* If we get AT_FDCWD, we always resolve symlinks relative to the host's root. Only if a positive
- * directory file descriptor is provided will we look at CHASE_AT_RESOLVE_IN_ROOT to determine
+ * directory file descriptor is provided we will look at CHASE_AT_RESOLVE_IN_ROOT to determine
* whether to resolve symlinks in it or not. */
if (dir_fd >= 0 && FLAGS_SET(flags, CHASE_AT_RESOLVE_IN_ROOT))
root_fd = openat(dir_fd, ".", O_CLOEXEC|O_DIRECTORY|O_PATH);