summaryrefslogtreecommitdiffstats
path: root/osdep-openbsd.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2014-08-09 20:31:36 +0100
committerThomas Adam <thomas@xteddy.org>2014-08-09 20:31:36 +0100
commita131b82e95df990528371b1d9ca40ee2be264fc8 (patch)
tree156ef097c276e22b60581e3058e2661327240869 /osdep-openbsd.c
parentfd3b7f357200b85a6f3d6e39bae676c7c70ba082 (diff)
parent1ac96200a7462597b137719b376f40ad0cd85216 (diff)
Merge branch 'obsd-master'
Conflicts: client.c
Diffstat (limited to 'osdep-openbsd.c')
-rw-r--r--osdep-openbsd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep-openbsd.c b/osdep-openbsd.c
index 9d88fb04..9e4df91d 100644
--- a/osdep-openbsd.c
+++ b/osdep-openbsd.c
@@ -34,7 +34,7 @@
#define is_runnable(p) \
((p)->p_stat == SRUN || (p)->p_stat == SIDL || (p)->p_stat == SONPROC)
#define is_stopped(p) \
- ((p)->p_stat == SSTOP || (p)->p_stat == SZOMB || (p)->p_stat == SDEAD)
+ ((p)->p_stat == SSTOP || (p)->p_stat == SDEAD)
struct kinfo_proc *cmp_procs(struct kinfo_proc *, struct kinfo_proc *);
char *osdep_get_name(int, char *);