Fixed a typo in rev.1.65 that gave a reference to a nonexistent variable.

This was not detected by LINT because LINT is missing COMPAT_SUNOS.
This commit is contained in:
Bruce Evans 2002-02-15 03:54:01 +00:00
parent e522304423
commit 8c3d74f4bf

View File

@ -285,7 +285,7 @@ do_sigaction(p, sig, act, oact, old)
if (act->sa_flags & SA_USERTRAMP)
SIGADDSET(ps->ps_usertramp, sig);
else
SIGDELSET(ps->ps_usertramp, seg);
SIGDELSET(ps->ps_usertramp, sig);
#endif
if (sig == SIGCHLD) {
if (act->sa_flags & SA_NOCLDSTOP)