summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/kern/tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c
index af12da3..aaa43fc 100644
--- a/sys/kern/tty.c
+++ b/sys/kern/tty.c
@@ -1651,7 +1651,7 @@ void
tty_hiwat_in_unblock(struct tty *tp)
{
- if ((tp->t_flags & TF_HIWAT_IN) == 0 &&
+ if (tp->t_flags & TF_HIWAT_IN &&
tp->t_termios.c_iflag & IXOFF &&
tp->t_termios.c_cc[VSTART] != _POSIX_VDISABLE) {
/*
OpenPOWER on IntegriCloud