diff options
-rw-r--r-- | usr.sbin/pstat/pstat.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index 83b6d21..3cc6f25 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)pstat.c 8.16 (Berkeley) 5/9/95"; #endif static const char rcsid[] = - "$Id$"; + "$Id: pstat.c,v 1.31 1997/10/09 07:22:08 charnier Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -294,8 +294,12 @@ main(argc, argv) break; case 'v': case 'i': /* Backward compatibility. */ + fprintf(stderr, "vnode mode not supported\n"); + exit(1); +#if 0 vnodeflag = 1; break; +#endif default: usage(); } @@ -326,7 +330,7 @@ main(argc, argv) usage(); if (fileflag || totalflag) filemode(); - if (vnodeflag || totalflag) + if (vnodeflag) vnodemode(); if (ttyflag) ttymode(); |