summaryrefslogtreecommitdiffstats
path: root/sbin/dumpfs
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1997-03-28 13:06:59 +0000
committerpeter <peter@FreeBSD.org>1997-03-28 13:06:59 +0000
commit78634ace4c2c8bab78043d0db1cbd9007ade8328 (patch)
tree5c4512f6e355deb3e265ede8381834b27209ea23 /sbin/dumpfs
parent88669bfdf1cce94852f639da3d12aa0ca6de1107 (diff)
downloadFreeBSD-src-78634ace4c2c8bab78043d0db1cbd9007ade8328.zip
FreeBSD-src-78634ace4c2c8bab78043d0db1cbd9007ade8328.tar.gz
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.
Diffstat (limited to 'sbin/dumpfs')
-rw-r--r--sbin/dumpfs/dumpfs.c4
1 files changed, 2 insertions, 2 deletions
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",
OpenPOWER on IntegriCloud