From: Roland McGrath Date: Mon, 23 Aug 1999 21:03:22 +0000 (+0000) Subject: 1999-08-23 Mark Kettenis X-Git-Tag: cvs/glibc_2-1-2~70 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fe68c72be5c4560bbd2bd1d93cf7da9e2515b1f6;p=thirdparty%2Fglibc.git 1999-08-23 Mark Kettenis * hurd/hurdsig.c (_hurd_internal_post_signal): Add missing else. --- diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index f2a01201b56..2c9625b4746 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