diff options
Diffstat (limited to 'networking')
-rw-r--r-- | networking/route.c | 2 | ||||
-rw-r--r-- | networking/telnetd.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/networking/route.c b/networking/route.c index 0697390..5b3e68b 100644 --- a/networking/route.c +++ b/networking/route.c @@ -49,7 +49,7 @@ #define RTF_REJECT 0x0200 /* Reject route */ #endif -#if defined (SIOCADDRTOLD) || defined (RTF_IRTT) /* route */ +#if defined(SIOCADDRTOLD) || defined(RTF_IRTT) /* route */ #define HAVE_NEW_ADDRT 1 #endif diff --git a/networking/telnetd.c b/networking/telnetd.c index 5c0463b..4ab6f56 100644 --- a/networking/telnetd.c +++ b/networking/telnetd.c @@ -285,8 +285,6 @@ make_new_session( /* make new process group */ setsid(); - tcsetpgrp(0, getpid()); - /* ^^^ strace says: "ioctl(0, TIOCSPGRP, [pid]) = -1 ENOTTY" -- ??! */ /* open the child's side of the tty. */ /* NB: setsid() disconnects from any previous ctty's. Therefore @@ -296,6 +294,7 @@ make_new_session( dup2(fd, 1); dup2(fd, 2); while (fd > 2) close(fd--); + tcsetpgrp(0, getpid()); /* comment? */ /* The pseudo-terminal allocated to the client is configured to operate in * cooked mode, and with XTABS CRMOD enabled (see tty(4)). */ |