From 72d12a7faecd477e46ff6fcb69a2acaf5f954557 Mon Sep 17 00:00:00 2001 From: Ian Dowse Date: Sun, 28 Apr 2002 10:24:38 +0000 Subject: [PATCH] Oops, remove references to NLOCKED and NWANTED, now that they no longer exist. --- usr.sbin/pstat/pstat.8 | 4 ---- usr.sbin/pstat/pstat.c | 4 ---- 2 files changed, 8 deletions(-) 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';