summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorwiz <wiz@NetBSD.org>2001-12-22 00:35:45 +0000
committerwiz <wiz@NetBSD.org>2001-12-22 00:35:45 +0000
commitef8adf0ad49ae768cfcb20be01eb0e0f80dc7262 (patch)
treeeff68aa2fd66e6776b0214e73121f808dd4a03f4 /sys
parent3e919c40c7f5fe1203814347aa085cf526bb2633 (diff)
Fix two typos reported by Chris Lloyd in kern/15028.
Diffstat (limited to 'sys')
-rw-r--r--sys/stand/ls.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/stand/ls.c b/sys/stand/ls.c
index 0c7cb09ea22..be98198ebf3 100644
--- a/sys/stand/ls.c
+++ b/sys/stand/ls.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ls.c,v 1.10 2001/12/01 02:15:40 perry Exp $ */
+/* $NetBSD: ls.c,v 1.11 2001/12/22 00:35:45 wiz Exp $ */
/*-
* Copyright (c) 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1993\n\
#if 0
static char sccsid[] = "@(#)ls.c 8.1 (Berkeley) 6/11/93";
#else
-__RCSID("$NetBSD: ls.c,v 1.10 2001/12/01 02:15:40 perry Exp $");
+__RCSID("$NetBSD: ls.c,v 1.11 2001/12/22 00:35:45 wiz Exp $");
#endif
#endif /* not lint */
@@ -74,11 +74,11 @@ main()
}
if (!S_ISDIR(st.st_mode)) {
- printf("ls: not a direntory\n");
+ printf("ls: not a directory\n");
continue;
}
if (st.st_size == 0) {
- printf("ls: zero length direntory\n");
+ printf("ls: zero length directory\n");
continue;
}
ls(fd);