diff options
Diffstat (limited to 'sys/kern/tty_snoop.c')
-rw-r--r-- | sys/kern/tty_snoop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/tty_snoop.c b/sys/kern/tty_snoop.c index 0a1438d..ebffb2a 100644 --- a/sys/kern/tty_snoop.c +++ b/sys/kern/tty_snoop.c @@ -497,12 +497,12 @@ snppoll(dev, events, p) * Caller should see if we down via FIONREAD ioctl().The last should * return -1 to indicate down state. */ - if (events & (POLLIN | POLLRDNORM)) + if (events & (POLLIN | POLLRDNORM)) { if (snp->snp_flags & SNOOP_DOWN || snp->snp_len > 0) revents |= events & (POLLIN | POLLRDNORM); else selrecord(p, &snp->snp_sel); - + } return (revents); } |