* Fix to init.c from Stuart Menefy <Stuart.Menefy@st.com> so that

it always sets the controlling terminal before running any programs
 -Erik
This commit is contained in:
Eric Andersen 2000-07-04 19:41:23 +00:00
parent 72965e3454
commit b02c54ebee
2 changed files with 2 additions and 0 deletions

1
init.c
View File

@ -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);

View File

@ -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);