diff options
Diffstat (limited to 'hurd/ctty-output.c')
-rw-r--r-- | hurd/ctty-output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hurd/ctty-output.c b/hurd/ctty-output.c index 46fe399970..77b931ccef 100644 --- a/hurd/ctty-output.c +++ b/hurd/ctty-output.c @@ -38,8 +38,8 @@ _hurd_ctty_output (io_t port, io_t ctty, error_t (*rpc) (io_t)) SIGTTOU. We redo this check at the top of the loop in case the signal handler changed the state. */ __spin_lock (&ss->lock); - if (__sigismember (&ss->blocked, SIGTTOU) || - ss->actions[SIGTTOU].sa_handler == SIG_IGN) + if (__sigismember (&ss->blocked, SIGTTOU) + || ss->actions[SIGTTOU].sa_handler == SIG_IGN) err = EIO; else err = 0; |