summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2004-11-18 15:10:25 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2004-11-18 15:10:25 +0000
commit5c5ac86cce111eb40d33fdd6e17d0c3bedbf1437 (patch)
tree08937f9d27c3b5287a2168a5c84bd3a7fdb3c0f2 /bin
parent68e96d160057e41e02c2d54230b19169a52855d0 (diff)
handle SONPROC; ok aaron, deraadt, krw
Diffstat (limited to 'bin')
-rw-r--r--bin/ps/print.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/ps/print.c b/bin/ps/print.c
index 258ec7cf185..cf63c65200a 100644
--- a/bin/ps/print.c
+++ b/bin/ps/print.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: print.c,v 1.33 2004/09/14 23:45:14 deraadt Exp $ */
+/* $OpenBSD: print.c,v 1.34 2004/11/18 15:10:24 markus Exp $ */
/* $NetBSD: print.c,v 1.27 1995/09/29 21:58:12 cgd Exp $ */
/*-
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94";
#else
-static char rcsid[] = "$OpenBSD: print.c,v 1.33 2004/09/14 23:45:14 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: print.c,v 1.34 2004/11/18 15:10:24 markus Exp $";
#endif
#endif /* not lint */
@@ -206,6 +206,7 @@ state(const struct kinfo_proc2 *kp, VARENT *ve)
case SRUN:
case SIDL:
+ case SONPROC:
*cp = 'R';
break;