]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
chase: fix comment
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 30 Mar 2023 04:13:57 +0000 (13:13 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 30 Mar 2023 05:52:13 +0000 (14:52 +0900)
src/basic/chase.c

index 6c02aeab8ba2ebea7764d192351c5b30a9c80c2e..2873aa9fac6ee377e6c474c1ecd1d0c82898271f 100644 (file)
@@ -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);