From afc549fd998d2f66b8dfda37d86bb27046938215 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 10 Jan 1994 18:13:39 +0000 Subject: [PATCH] (create_process): Set line discipline only if pty_flag. --- src/process.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/process.c b/src/process.c index d43b4880f7b..301a44dd534 100644 --- a/src/process.c +++ b/src/process.c @@ -1245,12 +1245,13 @@ create_process (process, new_argv, current_dir) #endif /* USG */ #endif /* not HAVE_SETSID */ #ifdef NTTYDISC - { - /* Use new line discipline. */ - int ldisc = NTTYDISC; - if (ioctl (xforkin, TIOCSETD, &ldisc) < 0) - write (1, "create_process/TIOCSETD failed\n", 31); - } + if (pty_flag) + { + /* Use new line discipline. */ + int ldisc = NTTYDISC; + if (ioctl (xforkin, TIOCSETD, &ldisc) < 0) + write (1, "create_process/TIOCSETD failed\n", 31); + } #endif #ifdef TIOCNOTTY /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you -- 2.39.5