diff options
Diffstat (limited to 'sys/kern/kern_exec.c')
-rw-r--r-- | sys/kern/kern_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index e551e68..cd9d74e 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -254,7 +254,7 @@ interpret: /* * For security and other reasons, signal handlers cannot * be shared after an exec. The new proces gets a copy of the old - * handlers. In execsigs(), the new process wll have its signals + * handlers. In execsigs(), the new process will have its signals * reset. */ if (p->p_procsig->ps_refcnt > 1) { @@ -267,7 +267,7 @@ interpret: p->p_procsig = newprocsig; p->p_procsig->ps_refcnt = 1; if (p->p_sigacts == &p->p_addr->u_sigacts) - panic("shared procsig but private sigacts?\n"); + panic("shared procsig but private sigacts?"); p->p_addr->u_sigacts = *p->p_sigacts; p->p_sigacts = &p->p_addr->u_sigacts; |