aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/lastcomm
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1995-04-11 18:50:51 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1995-04-11 18:50:51 +0000
commit7970bd101ccafb270befb8222a15e07ec6fa50e3 (patch)
tree95b0281d9646f2d2636ff22ecda21bc1dfb46850 /usr.bin/lastcomm
parent8889e816b4f7c14f682b354eb5b1b694bbfba082 (diff)
Notes
Diffstat (limited to 'usr.bin/lastcomm')
-rw-r--r--usr.bin/lastcomm/lastcomm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/lastcomm/lastcomm.c b/usr.bin/lastcomm/lastcomm.c
index 7c3c363b9bcf9..f8d90fc63aeb2 100644
--- a/usr.bin/lastcomm/lastcomm.c
+++ b/usr.bin/lastcomm/lastcomm.c
@@ -135,8 +135,9 @@ main(argc, argv)
continue;
t = expand(ab.ac_utime) + expand(ab.ac_stime);
- (void)printf("%-*s %-7s %-*s %-*s %6.2f secs %.16s\n",
- fldsiz(acct, ac_comm), ab.ac_comm, flagbits(ab.ac_flag),
+ (void)printf("%-*.*s %-7s %-*s %-*s %6.2f secs %.16s\n",
+ fldsiz(acct, ac_comm), fldsiz(acct, ac_comm),
+ ab.ac_comm, flagbits(ab.ac_flag),
UT_NAMESIZE, user_from_uid(ab.ac_uid, 0),
UT_LINESIZE, getdev(ab.ac_tty),
t / (double)AHZ, ctime(&ab.ac_btime));