summaryrefslogtreecommitdiff
path: root/usr.bin/touch
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2003-01-10 11:42:01 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2003-01-10 11:42:01 +0000
commit518bed78d577fe7ae70ad35e6b795dc05317da16 (patch)
tree941175ce1710e0d5ea6ddd57837d37c7b0c11d1d /usr.bin/touch
parent99d1dc98df1d38392b62b56e44ed2285450152ab (diff)
typo in comment; Jim Geovedi
Diffstat (limited to 'usr.bin/touch')
-rw-r--r--usr.bin/touch/touch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/touch/touch.c b/usr.bin/touch/touch.c
index 191cd87cb52..663c886979f 100644
--- a/usr.bin/touch/touch.c
+++ b/usr.bin/touch/touch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: touch.c,v 1.7 2002/02/16 21:27:55 millert Exp $ */
+/* $OpenBSD: touch.c,v 1.8 2003/01/10 11:42:00 henning Exp $ */
/* $NetBSD: touch.c,v 1.11 1995/08/31 22:10:06 jtc Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)touch.c 8.2 (Berkeley) 4/28/95";
#endif
-static char rcsid[] = "$OpenBSD: touch.c,v 1.7 2002/02/16 21:27:55 millert Exp $";
+static char rcsid[] = "$OpenBSD: touch.c,v 1.8 2003/01/10 11:42:00 henning Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -218,7 +218,7 @@ stime_arg1(arg, tvp)
case 12: /* CCYYMMDDhhmm */
t->tm_year = ATOI2(arg) * 100 - TM_YEAR_BASE;
yearset = 1;
- /* FALLTHOUGH */
+ /* FALLTHROUGH */
case 10: /* YYMMDDhhmm */
if (yearset) {
yearset = ATOI2(arg);