From 13a72104deedcf9a6e3ef2fdbe87d3f9d4c7963f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 24 Apr 1994 03:06:55 +0000 Subject: [PATCH] (create_process): Use SETUP_SLAVE_PTY only if pty_flag. --- src/process.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index c2b086e810..c7262fc79e 100644 --- a/src/process.c +++ b/src/process.c @@ -1349,7 +1349,10 @@ create_process (process, new_argv, current_dir) } #endif /* not UNIPLUS and not RTU */ #ifdef SETUP_SLAVE_PTY - SETUP_SLAVE_PTY; + if (pty_flag) + { + SETUP_SLAVE_PTY; + } #endif /* SETUP_SLAVE_PTY */ #ifdef AIX /* On AIX, we've disabled SIGHUP above once we start a child on a pty. -- 2.20.1