summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-12-16 21:45:02 +0000
committerbde <bde@FreeBSD.org>1995-12-16 21:45:02 +0000
commit2bf85612aadc7c93f8f5cc7f9773c5f9cd522443 (patch)
tree45cd31374a8c26c14e1dc110aa1da7ce6f47822f /sys
parent2088fa52299a370de70e6d56b05d0de00022b272 (diff)
downloadFreeBSD-src-2bf85612aadc7c93f8f5cc7f9773c5f9cd522443.zip
FreeBSD-src-2bf85612aadc7c93f8f5cc7f9773c5f9cd522443.tar.gz
Oops, the last commit missed one change from 200 to OBUFSIZ + 100.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/tty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c
index 43f2df5..03998fb 100644
--- a/sys/kern/tty.c
+++ b/sys/kern/tty.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)tty.c 8.8 (Berkeley) 1/21/94
- * $Id: tty.c,v 1.76 1995/12/15 01:01:00 bde Exp $
+ * $Id: tty.c,v 1.77 1995/12/15 02:18:06 bde Exp $
*/
/*-
@@ -1698,7 +1698,7 @@ ttycheckoutq(tp, wait)
hiwat = tp->t_hiwat;
s = spltty();
oldsig = wait ? curproc->p_siglist : 0;
- if (tp->t_outq.c_cc > hiwat + 200)
+ if (tp->t_outq.c_cc > hiwat + OBUFSIZ + 100)
while (tp->t_outq.c_cc > hiwat) {
ttstart(tp);
if (tp->t_outq.c_cc <= hiwat)
OpenPOWER on IntegriCloud