summaryrefslogtreecommitdiffstats
path: root/sys/dev/sio
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1993-07-20 02:06:49 +0000
committerjkh <jkh@FreeBSD.org>1993-07-20 02:06:49 +0000
commit912c4a4d1dd36bba830df1307878c68b77c5def3 (patch)
tree4024ce09c61e66bc75670552840768e112028432 /sys/dev/sio
parent1b4fd5b5e2efd99b2d4f20d5d4b5c4bc0aa8e575 (diff)
downloadFreeBSD-src-912c4a4d1dd36bba830df1307878c68b77c5def3.zip
FreeBSD-src-912c4a4d1dd36bba830df1307878c68b77c5def3.tar.gz
Applied Andrew's patch to fix loop-on-logout problem.
Diffstat (limited to 'sys/dev/sio')
-rw-r--r--sys/dev/sio/sio.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c
index 1b3d3ac..46e32eb 100644
--- a/sys/dev/sio/sio.c
+++ b/sys/dev/sio/sio.c
@@ -41,7 +41,7 @@
* into the patch kit. Added in sioselect
* from com.c. Added port 4 support.
*/
-static char rcsid[] = "$Header: /a/cvs/386BSD/src/sys.386bsd/i386/isa/sio.c,v 1.3 1993/07/18 21:27:57 rgrimes Exp $";
+static char rcsid[] = "$Header: /a/cvs/386BSD/src/sys.386bsd/i386/isa/sio.c,v 1.4 1993/07/20 00:22:30 jkh Exp $";
#include "sio.h"
#if NSIO > 0
@@ -670,13 +670,11 @@ bidir_open_top:
* since those are only relevant for logins. It's
* important to have echo off initially so that the
* line doesn't start blathering before the echo flag
- * can be turned off. It's useful to have clocal on
- * initially so that "stty changed-defaults </dev/comx"
- * doesn't hang waiting for carrier.
+ * can be turned off.
*/
tp->t_iflag = 0;
tp->t_oflag = 0;
- tp->t_cflag = CREAD | CS8 | CLOCAL;
+ tp->t_cflag = CREAD | CS8 | HUPCL;
tp->t_lflag = 0;
tp->t_ispeed = tp->t_ospeed = comdefaultrate;
}
OpenPOWER on IntegriCloud