diff options
| author | Paul Saab <ps@FreeBSD.org> | 2003-05-14 00:03:55 +0000 |
|---|---|---|
| committer | Paul Saab <ps@FreeBSD.org> | 2003-05-14 00:03:55 +0000 |
| commit | 13d56a9a90882ab6d09e1e9846fe79dca28c039c (patch) | |
| tree | dee074f73fd6044978bd5980baf4c5fc61b9a577 | |
| parent | 90af4afacb3d76aba2261a2dba4a1c5f69670a19 (diff) | |
Notes
| -rw-r--r-- | sys/kern/tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index 0b543f176a59..2367cd34b766 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -1601,7 +1601,7 @@ loop: splx(s); sx_slock(&proctree_lock); PROC_LOCK(p); - if (SIGISMEMBER(p->p_sigignore, SIGTTIN) || + if (SIGISMEMBER(p->p_sigacts->ps_sigignore, SIGTTIN) || SIGISMEMBER(td->td_sigmask, SIGTTIN) || (p->p_flag & P_PPWAIT) || p->p_pgrp->pg_jobc == 0) { PROC_UNLOCK(p); |
