1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-16 15:11:52 +00:00

Small style fix.

This commit is contained in:
John Baldwin 2011-03-23 13:44:32 +00:00
parent a3d0282dad
commit c3b127e022
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=219905

View File

@ -1632,7 +1632,7 @@ killpg1(struct thread *td, int sig, int pgid, int all, ksiginfo_t *ksi)
LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
PROC_LOCK(p);
if (p->p_pid <= 1 || p->p_flag & P_SYSTEM ||
p->p_state == PRS_NEW ) {
p->p_state == PRS_NEW) {
PROC_UNLOCK(p);
continue;
}