diff --git a/usr.sbin/pstat/pstat.8 b/usr.sbin/pstat/pstat.8 index b38ea8dc3be..f21bc0d2eaa 100644 --- a/usr.sbin/pstat/pstat.8 +++ b/usr.sbin/pstat/pstat.8 @@ -348,10 +348,6 @@ special file accessed special file updated .It C special file times changed -.It L -node is locked -.It w -someone wants to lock .El .El .It SIZ/RDEV diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index b0a5db9f242..cf34de3297c 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -543,10 +543,6 @@ nfs_print(vp) *flags++ = 'U'; if (flag & NCHG) *flags++ = 'C'; - if (flag & NLOCKED) - *flags++ = 'L'; - if (flag & NWANTED) - *flags++ = 'w'; if (flag == 0) *flags++ = '-'; *flags = '\0';