diff options
-rw-r--r-- | usr.sbin/ppp/modem.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/ppp/modem.c b/usr.sbin/ppp/modem.c index ac276f7..901f088 100644 --- a/usr.sbin/ppp/modem.c +++ b/usr.sbin/ppp/modem.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: modem.c,v 1.19 1996/03/27 21:40:55 ache Exp $ + * $Id: modem.c,v 1.20 1996/03/27 22:28:19 ache Exp $ * * TODO: */ @@ -449,7 +449,9 @@ int mode; rstio.c_cflag |= CLOCAL | CCTS_OFLOW|CRTS_IFLOW; #else rstio.c_cflag |= CLOCAL; + rstio.c_iflag |= IXOFF; #endif + rstio.c_iflag |= IXON; if (!(mode & MODE_DEDICATED)) rstio.c_cflag |= HUPCL; if ((mode & MODE_DIRECT) == 0) { |