From e7a85be33fc3bc164d55aaa44eda7f972ff86850 Mon Sep 17 00:00:00 2001 From: ru Date: Fri, 1 Jun 2001 10:07:28 +0000 Subject: Remove vestiges of MFS. --- usr.sbin/pstat/pstat.8 | 2 +- usr.sbin/pstat/pstat.c | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'usr.sbin/pstat') diff --git a/usr.sbin/pstat/pstat.8 b/usr.sbin/pstat/pstat.8 index 5b82aca..7b8bed7 100644 --- a/usr.sbin/pstat/pstat.8 +++ b/usr.sbin/pstat/pstat.8 @@ -240,7 +240,7 @@ on where .Em fstype is one of -.Em ufs , nfs , mfs , or pc ; +.Em ufs , nfs , or pc ; .Em from is the filesystem is mounted from; .Em on diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index d8ddfbf..96f26b0 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -357,8 +357,7 @@ vnodemode() maddr = vp->v_mount; mount_print(mp); vnode_header(); - if (!strcmp(ST.f_fstypename, "ufs") || - !strcmp(ST.f_fstypename, "mfs")) + if (!strcmp(ST.f_fstypename, "ufs")) ufs_header(); else if (!strcmp(ST.f_fstypename, "nfs")) nfs_header(); @@ -367,8 +366,7 @@ vnodemode() (void)printf("\n"); } vnode_print(evp->avnode, vp); - if (!strcmp(ST.f_fstypename, "ufs") || - !strcmp(ST.f_fstypename, "mfs")) + if (!strcmp(ST.f_fstypename, "ufs")) ufs_print(vp); else if (!strcmp(ST.f_fstypename, "nfs")) nfs_print(vp); -- cgit v1.1