summaryrefslogtreecommitdiff
path: root/contrib/file/file.c
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2003-02-28 05:19:36 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2003-02-28 05:19:36 +0000
commit490143648c5a398bdab6c5bee5095bada57ea811 (patch)
treee13ce148e602abf9b596b117f679e40ac628883e /contrib/file/file.c
parent3459dd3784f268dbec1ae7d473ff39e7192ca1f3 (diff)
Notes
Diffstat (limited to 'contrib/file/file.c')
-rw-r--r--contrib/file/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/file/file.c b/contrib/file/file.c
index 5dedd9b0fcad..2ccd8cab9809 100644
--- a/contrib/file/file.c
+++ b/contrib/file/file.c
@@ -58,7 +58,7 @@
#include "patchlevel.h"
#ifndef lint
-FILE_RCSID("@(#)$Id: file.c,v 1.68 2003/02/08 18:33:53 christos Exp $")
+FILE_RCSID("@(#)$Id: file.c,v 1.69 2003/02/27 20:47:46 christos Exp $")
#endif /* lint */
@@ -429,7 +429,7 @@ process(const char *inname, int wid)
if ((fd = open(inname, O_RDONLY)) < 0) {
/* We can't open it, but we were able to stat it. */
- if (sb.st_mode & 0002) ckfputs("writeable, ", stdout);
+ if (sb.st_mode & 0002) ckfputs("writable, ", stdout);
if (sb.st_mode & 0111) ckfputs("executable, ", stdout);
ckfprintf(stdout, "can't read `%s' (%s).\n",
inname, strerror(errno));