diff options
author | kib <kib@FreeBSD.org> | 2009-10-01 12:46:58 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2009-10-01 12:46:58 +0000 |
commit | 605a0e085ad8ef30b81a7a29bd9c772cf08aee00 (patch) | |
tree | 5abcf57155854636c00279d2954967d17da1ce6d /sys | |
parent | 3fee7e94a90fc3c073a54e386cf4b79d3b05443d (diff) | |
download | FreeBSD-src-605a0e085ad8ef30b81a7a29bd9c772cf08aee00.zip FreeBSD-src-605a0e085ad8ef30b81a7a29bd9c772cf08aee00.tar.gz |
Fix typo.
MFC after: 3 days
Diffstat (limited to 'sys')
-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 74e625a..0386fc4 100644 --- a/sys/kern/kern_sig.c +++ b/sys/kern/kern_sig.c @@ -1892,7 +1892,7 @@ sigtd(struct proc *p, int sig, int prop) /* * Check if current thread can handle the signal without - * switching conetxt to another thread. + * switching context to another thread. */ if (curproc == p && !SIGISMEMBER(curthread->td_sigmask, sig)) return (curthread); |