1999-08-23 Mark Kettenis <kettenis@gnu.org>

* hurd/hurdsig.c (_hurd_internal_post_signal): Add missing else.
This commit is contained in:
Roland McGrath 1999-08-23 20:53:42 +00:00
parent 1d0b89a483
commit 09d434dfc6
1 changed files with 1 additions and 1 deletions

View File

@ -586,7 +586,7 @@ _hurd_internal_post_signal (struct hurd_sigstate *ss,
if (handler == SIG_IGN)
/* Ignore the signal altogether. */
act = ignore;
if (handler != SIG_ERR)
else if (handler != SIG_ERR)
/* Run the preemption-provided handler. */
act = handle;
else