diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-04 19:41:23 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-04 19:41:23 +0000 |
commit | b02c54ebeef845480a09690fe092071d823c1f0f (patch) | |
tree | fb7b1d503330de8d1f6ea019019c2ea0161d1c59 /init/init.c | |
parent | 72965e3454ae254455c6d6ce69cf0d5af62dc2db (diff) |
* Fix to init.c from Stuart Menefy <Stuart.Menefy@st.com> so that
it always sets the controlling terminal before running any programs
-Erik
Diffstat (limited to 'init/init.c')
-rw-r--r-- | init/init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/init/init.c b/init/init.c index 2c2751391..26e4dc7a7 100644 --- a/init/init.c +++ b/init/init.c @@ -411,6 +411,7 @@ static pid_t run(char *command, char *terminal, int get_enter) dup2(fd, 0); dup2(fd, 1); dup2(fd, 2); + ioctl(0, TIOCSCTTY, 0); tcsetpgrp(0, getpgrp()); set_term(0); |