From 09d434dfc61e0a587123454cb9d485d904776a89 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 23 Aug 1999 20:53:42 +0000 Subject: [PATCH] 1999-08-23 Mark Kettenis * hurd/hurdsig.c (_hurd_internal_post_signal): Add missing else. --- hurd/hurdsig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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