From 78634ace4c2c8bab78043d0db1cbd9007ade8328 Mon Sep 17 00:00:00 2001 From: peter Date: Fri, 28 Mar 1997 13:06:59 +0000 Subject: Make this compile after the fsirand changes that deleted two fields. I was not sure whether the fs_id fields should be printed in the clear in case of sniffing over a network login etc. It might be an idea to have somebody with spare time go through and find any other missing fields that should be reported. Definate 2.2.x/2.1.x candidate since it breaks the build. --- sbin/dumpfs/dumpfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sbin') diff --git a/sbin/dumpfs/dumpfs.c b/sbin/dumpfs/dumpfs.c index a63d094..dd53cd4 100644 --- a/sbin/dumpfs/dumpfs.c +++ b/sbin/dumpfs/dumpfs.c @@ -146,8 +146,8 @@ dumpfs(name) printf("minfree\t%d%%\toptim\t%s\tmaxcontig %d\tmaxbpg\t%d\n", afs.fs_minfree, afs.fs_optim == FS_OPTSPACE ? "space" : "time", afs.fs_maxcontig, afs.fs_maxbpg); - printf("rotdelay %dms\theadswitch %dus\ttrackseek %dus\trps\t%d\n", - afs.fs_rotdelay, afs.fs_headswitch, afs.fs_trkseek, afs.fs_rps); + printf("rotdelay %dms\trps\t%d\n", + afs.fs_rotdelay, afs.fs_rps); printf("ntrak\t%d\tnsect\t%d\tnpsect\t%d\tspc\t%d\n", afs.fs_ntrak, afs.fs_nsect, afs.fs_npsect, afs.fs_spc); printf("symlinklen %d\ttrackskew %d\tinterleave %d\tcontigsumsize %d\n", -- cgit v1.1