From: Yu Watanabe Date: Thu, 30 Mar 2023 04:13:57 +0000 (+0900) Subject: chase: fix comment X-Git-Tag: v254-rc1~867^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52576a7503aa8d321f19ae2d6f2d0375074a0716;p=thirdparty%2Fsystemd.git chase: fix comment --- diff --git a/src/basic/chase.c b/src/basic/chase.c index 6c02aeab8ba..2873aa9fac6 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);