diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-03-30 06:13:57 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-03-30 07:52:13 +0200 |
commit | 52576a7503aa8d321f19ae2d6f2d0375074a0716 (patch) | |
tree | 01c14e83e8494ef642ec946ed2e1a48c607f923e /src/basic/chase.c | |
parent | units: let's establish the coredump socket before writting core_pattern sysctl (diff) | |
download | systemd-52576a7503aa8d321f19ae2d6f2d0375074a0716.tar.xz systemd-52576a7503aa8d321f19ae2d6f2d0375074a0716.zip |
chase: fix comment
Diffstat (limited to 'src/basic/chase.c')
-rw-r--r-- | src/basic/chase.c | 2 |
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); |