summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pstat
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/pstat')
-rw-r--r--usr.sbin/pstat/pstat.82
-rw-r--r--usr.sbin/pstat/pstat.c6
2 files changed, 3 insertions, 5 deletions
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);
OpenPOWER on IntegriCloud