1999-08-23 Mark Kettenis <kettenis@gnu.org>
authorRoland McGrath <roland@gnu.org>
Mon, 23 Aug 1999 20:53:42 +0000 (20:53 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 23 Aug 1999 20:53:42 +0000 (20:53 +0000)
* hurd/hurdsig.c (_hurd_internal_post_signal): Add missing else.

hurd/hurdsig.c

index f2a0120..2c9625b 100644 (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