diff options
author | bde <bde@FreeBSD.org> | 2002-02-15 03:54:01 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2002-02-15 03:54:01 +0000 |
commit | 60f2b0c6380f4b208a9389feb273b8c8e8ed6590 (patch) | |
tree | 53ac5a6b3e5e54bbc15d8821f9b3dd4f831913e6 /sys/kern/kern_sig.c | |
parent | 8129d9e35513bfd2499e8dbda74feb1398fd0cb7 (diff) | |
download | FreeBSD-src-60f2b0c6380f4b208a9389feb273b8c8e8ed6590.zip FreeBSD-src-60f2b0c6380f4b208a9389feb273b8c8e8ed6590.tar.gz |
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.
Diffstat (limited to 'sys/kern/kern_sig.c')
-rw-r--r-- | sys/kern/kern_sig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c index 379c017..27acc64 100644 --- a/sys/kern/kern_sig.c +++ b/sys/kern/kern_sig.c @@ -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) |