From: Jim Meyering Date: Wed, 23 Nov 2005 13:36:48 +0000 (+0000) Subject: tweak grammar in comments X-Git-Tag: v6.0~1266 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1aab378857588fa49f54689074b9c72e98a96cab;p=thirdparty%2Fcoreutils.git tweak grammar in comments --- diff --git a/lib/openat.c b/lib/openat.c index 1bd4d73c82..32424eb4f8 100644 --- a/lib/openat.c +++ b/lib/openat.c @@ -99,7 +99,7 @@ rpl_openat (int fd, char const *file, int flags, ...) char *proc_file; BUILD_PROC_NAME (proc_file, fd, file); err = open (proc_file, flags, mode); - /* If the syscall succeeded, or if it failed with an unexpected + /* If the syscall succeeds, or if it fails with an unexpected errno value, then return right away. Otherwise, fall through and resort to using save_cwd/restore_cwd. */ if (0 <= err || ! EXPECTED_ERRNO (errno)) @@ -166,7 +166,7 @@ openat_permissive (int fd, char const *file, int flags, char *proc_file; BUILD_PROC_NAME (proc_file, fd, file); err = open (proc_file, flags, mode); - /* If the syscall succeeded, or if it failed with an unexpected + /* If the syscall succeeds, or if it fails with an unexpected errno value, then return right away. Otherwise, fall through and resort to using save_cwd/restore_cwd. */ if (0 <= err || ! EXPECTED_ERRNO (errno)) @@ -233,7 +233,7 @@ fdopendir (int fd) BUILD_PROC_NAME (proc_file, fd, "."); dir = opendir (proc_file); saved_errno = (dir == NULL ? errno : 0); - /* If the syscall succeeded, or if it failed with an unexpected + /* If the syscall succeeds, or if it fails with an unexpected errno value, then return right away. Otherwise, fall through and resort to using save_cwd/restore_cwd. */ if (dir != NULL || ! EXPECTED_ERRNO (errno)) @@ -295,7 +295,7 @@ fstatat (int fd, char const *file, struct stat *st, int flag) err = (flag == AT_SYMLINK_NOFOLLOW ? lstat (proc_file, st) : stat (proc_file, st)); - /* If the syscall succeeded, or if it failed with an unexpected + /* If the syscall succeeds, or if it fails with an unexpected errno value, then return right away. Otherwise, fall through and resort to using save_cwd/restore_cwd. */ if (0 <= err || ! EXPECTED_ERRNO (errno)) @@ -349,7 +349,7 @@ unlinkat (int fd, char const *file, int flag) char *proc_file; BUILD_PROC_NAME (proc_file, fd, file); err = (flag == AT_REMOVEDIR ? rmdir (proc_file) : unlink (proc_file)); - /* If the syscall succeeded, or if it failed with an unexpected + /* If the syscall succeeds, or if it fails with an unexpected errno value, then return right away. Otherwise, fall through and resort to using save_cwd/restore_cwd. */ if (0 <= err || ! EXPECTED_ERRNO (errno))