summaryrefslogtreecommitdiff
path: root/proc/pgrp.c
diff options
context:
space:
mode:
Diffstat (limited to 'proc/pgrp.c')
-rw-r--r--proc/pgrp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/proc/pgrp.c b/proc/pgrp.c
index ea64ede7..ea500fee 100644
--- a/proc/pgrp.c
+++ b/proc/pgrp.c
@@ -371,10 +371,7 @@ join_pgrp (struct proc *p)
pg->pg_plist->p_gprevp = &p->p_gnext;
pg->pg_plist = p;
- /* Processes 0 and 1 have no parent; they count as orphaned
- processes always. */
- if (p->p_parent
- && p->p_parent->p_pgrp != pg
+ if (p->p_parent->p_pgrp != pg
&& p->p_parent->p_pgrp->pg_session == pg->pg_session)
pg->pg_orphcnt++;
}