diff options
author | Roland McGrath <roland@gnu.org> | 1999-08-23 20:53:42 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-08-23 20:53:42 +0000 |
commit | 09d434dfc61e0a587123454cb9d485d904776a89 (patch) | |
tree | 4301539f1ab7fe743c6581cfbbb4514cd1b406c6 /hurd | |
parent | 1d0b89a483cf4cf48dc11f269008c0ebfe26bfd4 (diff) | |
download | glibc-09d434dfc61e0a587123454cb9d485d904776a89.tar.gz |
1999-08-23 Mark Kettenis <kettenis@gnu.org>
* hurd/hurdsig.c (_hurd_internal_post_signal): Add missing else.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/hurdsig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index f2a01201b5..2c9625b474 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -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 |