--- libaitio/src/pty.c 2011/09/19 23:30:50 1.1.2.4 +++ libaitio/src/pty.c 2011/09/21 12:55:07 1.1.2.5 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: pty.c,v 1.1.2.4 2011/09/19 23:30:50 misho Exp $ +* $Id: pty.c,v 1.1.2.5 2011/09/21 12:55:07 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -217,6 +217,14 @@ ioSetSidTTY(int *ttyfd, const char *ttyname) } else close(fd); + /* redirect standart handles to tty */ + dup2(*ttyfd, STDIN_FILENO); + dup2(*ttyfd, STDOUT_FILENO); + dup2(*ttyfd, STDERR_FILENO); + if (*ttyfd > 2) + close(*ttyfd); + + /* NOW TTY IS READY! */ return 0; }