summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMike Pechkin <mpech@cvs.openbsd.org>2003-10-15 15:58:23 +0000
committerMike Pechkin <mpech@cvs.openbsd.org>2003-10-15 15:58:23 +0000
commitac880267611a6b5b16887c45ce6d0167b3543844 (patch)
tree42cf40348252474bf417ba95ebaac7c504f1b9a9 /bin
parent1f708bd66208a3e03551de10b98eadbfcbb358a0 (diff)
errx -> err. From form.
millert@ ok
Diffstat (limited to 'bin')
-rw-r--r--bin/date/date.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/date/date.c b/bin/date/date.c
index 41117bdfdf5..2eba14ae7c4 100644
--- a/bin/date/date.c
+++ b/bin/date/date.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: date.c,v 1.25 2003/07/29 00:24:15 deraadt Exp $ */
+/* $OpenBSD: date.c,v 1.26 2003/10/15 15:58:22 mpech Exp $ */
/* $NetBSD: date.c,v 1.11 1995/09/07 06:21:05 jtc Exp $ */
/*
@@ -40,7 +40,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)date.c 8.2 (Berkeley) 4/28/95";
#else
-static char rcsid[] = "$OpenBSD: date.c,v 1.25 2003/07/29 00:24:15 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: date.c,v 1.26 2003/10/15 15:58:22 mpech Exp $";
#endif
#endif /* not lint */
@@ -244,7 +244,7 @@ setthetime(char *p)
tv.tv_sec = tval;
tv.tv_usec = 0;
if (settimeofday(&tv, NULL))
- errx(1, "settimeofday");
+ err(1, "settimeofday");
logwtmp("{", "date", "");
}
}