diff options
author | 2004-02-15 22:56:12 +0000 | |
---|---|---|
committer | 2004-02-15 22:56:12 +0000 | |
commit | 32db289bd94078aa0900d11aecc9af177e4479b2 (patch) | |
tree | 2a900231b5bdb5ff3103b7f77ff823c0d8d1af41 /usr.bin/systat/vmstat.c | |
parent | Remove inittodr line during boot, recommended deraadt@ (diff) | |
download | wireguard-openbsd-32db289bd94078aa0900d11aecc9af177e4479b2.tar.xz wireguard-openbsd-32db289bd94078aa0900d11aecc9af177e4479b2.zip |
'split' command for iostat mode
from Pedro Martelletto <pbastos@rdc.puc-rio.br>
Diffstat (limited to 'usr.bin/systat/vmstat.c')
-rw-r--r-- | usr.bin/systat/vmstat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/systat/vmstat.c b/usr.bin/systat/vmstat.c index eb7bf0266ac..5d82c70cc27 100644 --- a/usr.bin/systat/vmstat.c +++ b/usr.bin/systat/vmstat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmstat.c,v 1.44 2004/02/15 02:45:47 tedu Exp $ */ +/* $OpenBSD: vmstat.c,v 1.45 2004/02/15 22:56:12 tedu Exp $ */ /* $NetBSD: vmstat.c,v 1.5 1996/05/10 23:16:40 thorpej Exp $ */ /*- @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)vmstat.c 8.2 (Berkeley) 1/12/94"; #endif -static char rcsid[] = "$OpenBSD: vmstat.c,v 1.44 2004/02/15 02:45:47 tedu Exp $"; +static char rcsid[] = "$OpenBSD: vmstat.c,v 1.45 2004/02/15 22:56:12 tedu Exp $"; #endif /* not lint */ /* @@ -326,7 +326,7 @@ labelkre(void) "Namei Sys-cache Proc-cache No-cache"); mvprintw(NAMEIROW + 1, NAMEICOL, " Calls hits %% hits %% miss %%"); - mvprintw(DISKROW, DISKCOL, "Discs"); + mvprintw(DISKROW, DISKCOL, "Disks"); mvprintw(DISKROW + 1, DISKCOL, "seeks"); mvprintw(DISKROW + 2, DISKCOL, "xfers"); mvprintw(DISKROW + 3, DISKCOL, "Kbyte"); |