diff options
Diffstat (limited to 'usr.sbin/pstat/pstat.c')
-rw-r--r-- | usr.sbin/pstat/pstat.c | 6 |
1 files changed, 2 insertions, 4 deletions
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); |