diff options
author | 2002-12-15 13:28:22 +0000 | |
---|---|---|
committer | 2002-12-15 13:28:22 +0000 | |
commit | 28a189ed1a77b8fa81794b4b65297e3e9ef1e3fb (patch) | |
tree | 5ecdc880afe35a5a0d8e50abbb52fe3505d741dd /usr.bin/file/file.c | |
parent | more writeable -> writable by torh (diff) | |
download | wireguard-openbsd-28a189ed1a77b8fa81794b4b65297e3e9ef1e3fb.tar.xz wireguard-openbsd-28a189ed1a77b8fa81794b4b65297e3e9ef1e3fb.zip |
more writable spelling; torh
Diffstat (limited to 'usr.bin/file/file.c')
-rw-r--r-- | usr.bin/file/file.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/file/file.c b/usr.bin/file/file.c index 7c1bcec6089..ba84ad6a4f3 100644 --- a/usr.bin/file/file.c +++ b/usr.bin/file/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.9 2002/11/29 00:27:03 millert Exp $ */ +/* $OpenBSD: file.c,v 1.10 2002/12/15 13:30:17 henning Exp $ */ /* * file - find type of a file or files - main program. @@ -27,7 +27,7 @@ * 4. This notice may not be removed or altered. */ #ifndef lint -static char *moduleid = "$OpenBSD: file.c,v 1.9 2002/11/29 00:27:03 millert Exp $"; +static char *moduleid = "$OpenBSD: file.c,v 1.10 2002/12/15 13:30:17 henning Exp $"; #endif /* lint */ #include <stdio.h> @@ -316,7 +316,7 @@ 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)); |