From: Jim Meyering Date: Sun, 26 Jan 1997 18:57:36 +0000 (+0000) Subject: . X-Git-Tag: FILEUTILS-3_16~6 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=07b07ca07ced0f6688ec1656d5e3ef92ae27fee6;p=thirdparty%2Fcoreutils.git . --- diff --git a/src/test.c b/src/test.c index a9b150fb05..cae73296b6 100644 --- a/src/test.c +++ b/src/test.c @@ -654,7 +654,7 @@ unary_operator (void) value = -1 != eaccess (argv[pos - 1], R_OK); return (TRUE == value); - case 'w': /* File is writeable? */ + case 'w': /* File is writable? */ unary_advance (); value = -1 != eaccess (argv[pos - 1], W_OK); return (TRUE == value);