From: Roland McGrath Date: Mon, 1 Jul 1996 18:10:03 +0000 (+0000) Subject: Fri Jun 28 15:46:02 1996 Michael I. Bushnell, p/BSG X-Git-Tag: upstream/2.20~22318 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4bbb963eb40bc42a509d20358cefdbff7fb0889a;p=platform%2Fupstream%2Flinaro-glibc.git Fri Jun 28 15:46:02 1996 Michael I. Bushnell, p/BSG * hurd/hurdsig.c (_hurd_internal_post_signal): In pending signal check for signal zero, repair logical sense of test by parenthesizing correctly. --- diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index 5041ea0..a3ec24e 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -929,9 +929,9 @@ _hurd_internal_post_signal (struct hurd_sigstate *ss, for (signo = 1; signo < NSIG; ++signo) if (__sigismember (&ss->pending, signo) && (!__sigismember (&ss->blocked, signo) - /* We "deliver" immediately pending blocked signals whose - action might be to ignore, so that if ignored they are - dropped right away. */ + /* We "deliver" immediately pending blocked signals whose + action might be to ignore, so that if ignored they are + dropped right away. */ || ss->actions[signo].sa_handler == SIG_IGN || ss->actions[signo].sa_handler == SIG_DFL)) {