From d69ca183f0e720874dd03db5d2d266d72d6161c4 Mon Sep 17 00:00:00 2001 From: brian Date: Mon, 9 Aug 1999 23:49:59 +0000 Subject: Back out the last patch. I'm too tired to apply patches. --- usr.sbin/ppp/tty.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'usr.sbin/ppp') diff --git a/usr.sbin/ppp/tty.c b/usr.sbin/ppp/tty.c index 0bd64d3..e2201ec 100644 --- a/usr.sbin/ppp/tty.c +++ b/usr.sbin/ppp/tty.c @@ -204,10 +204,8 @@ tty_Raw(struct physical *p) else ios.c_cflag |= CLOCAL; - if (p->type != PHYS_DEDICATED) { + if (p->type != PHYS_DEDICATED) ios.c_cflag |= HUPCL; - ios.c_cflag &= ~CLOCAL; - } tcsetattr(p->fd, TCSANOW, &ios); } @@ -412,10 +410,8 @@ tty_Create(struct physical *p) ios.c_iflag |= IXOFF; } ios.c_iflag |= IXON; - if (p->type != PHYS_DEDICATED) { + if (p->type != PHYS_DEDICATED) ios.c_cflag |= HUPCL; - ios.c_cflag &= ~CLOCAL; - } if (p->type != PHYS_DIRECT) { /* Change tty speed when we're not in -direct mode */ -- cgit v1.1