summaryrefslogtreecommitdiff
path: root/usr.bin/last
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2001-02-06 22:10:10 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2001-02-06 22:10:10 +0000
commit303723b13d658c3fe1a861ba5c8972b50be382df (patch)
treec9b524dc5bb263cbea508c13afb2d6cf85adaf2e /usr.bin/last
parent97315878eb4d36ab87da349abcef811f3564d00c (diff)
Change host width to 24 so last produces one line per user; deraadt ok.
Diffstat (limited to 'usr.bin/last')
-rw-r--r--usr.bin/last/last.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/last/last.c b/usr.bin/last/last.c
index b187bf86a86..d6bd21e9c6a 100644
--- a/usr.bin/last/last.c
+++ b/usr.bin/last/last.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: last.c,v 1.13 2001/01/31 17:42:26 deraadt Exp $ */
+/* $OpenBSD: last.c,v 1.14 2001/02/06 22:10:09 fgsch Exp $ */
/* $NetBSD: last.c,v 1.6 1994/12/24 16:49:02 cgd Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)last.c 8.2 (Berkeley) 4/2/94";
#endif
-static char rcsid[] = "$OpenBSD: last.c,v 1.13 2001/01/31 17:42:26 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: last.c,v 1.14 2001/02/06 22:10:09 fgsch Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -107,7 +107,7 @@ void wtmp __P((void));
void checkargs __P((void));
#define NAME_WIDTH 8
-#define HOST_WIDTH 32
+#define HOST_WIDTH 24
int
main(argc, argv)