From: Zbigniew Jędrzejewski-Szmek Date: Fri, 13 Apr 2018 10:40:11 +0000 (+0200) Subject: basic/copy: fix awkward sentence X-Git-Tag: v239~403^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8716%2Fhead;p=thirdparty%2Fsystemd.git basic/copy: fix awkward sentence --- diff --git a/src/basic/copy.c b/src/basic/copy.c index 55394871fdf..5b6cae39d05 100644 --- a/src/basic/copy.c +++ b/src/basic/copy.c @@ -69,7 +69,7 @@ static int fd_is_nonblock_pipe(int fd) { struct stat st; int flags; - /* Checks whether the specified file descriptor refers to a pipe, and if so if is has O_NONBLOCK set. */ + /* Checks whether the specified file descriptor refers to a pipe, and if so if O_NONBLOCK is set. */ if (fstat(fd, &st) < 0) return -errno;