aboutsummaryrefslogtreecommitdiff
path: root/networking/telnetd.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-19 08:18:50 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-19 08:18:50 +0000
commitae4342ca3e30f7b11732ecda3ad15821e81bc314 (patch)
tree1878104940eac4649bc8add4d0b2893ab1cb0a94 /networking/telnetd.c
parentee56e013cfb6304f66129afee7978b0864699419 (diff)
downloadbusybox-w32-ae4342ca3e30f7b11732ecda3ad15821e81bc314.tar.gz
busybox-w32-ae4342ca3e30f7b11732ecda3ad15821e81bc314.tar.bz2
busybox-w32-ae4342ca3e30f7b11732ecda3ad15821e81bc314.zip
- Rename getpty() to xgetpty() and adjust callers.
- Rewrite kbd_mode and setconsole - Introduce and use console_make_active() and xopen_xwrite_close() - honour buffer-reservation method as set by the user (dumpkmap, loadkmap) - shrink rtcwake and some console-tools Saves about 270 Bytes
Diffstat (limited to 'networking/telnetd.c')
-rw-r--r--networking/telnetd.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/networking/telnetd.c b/networking/telnetd.c
index 5188edbab..e312c0b41 100644
--- a/networking/telnetd.c
+++ b/networking/telnetd.c
@@ -164,11 +164,7 @@ make_new_session(
164 /*ts->buf2 = ts->buf1 + BUFSIZE;*/ 164 /*ts->buf2 = ts->buf1 + BUFSIZE;*/
165 165
166 /* Got a new connection, set up a tty. */ 166 /* Got a new connection, set up a tty. */
167 fd = getpty(tty_name); 167 fd = xgetpty(tty_name);
168 if (fd < 0) {
169 bb_error_msg("can't create pty");
170 return NULL;
171 }
172 if (fd > maxfd) 168 if (fd > maxfd)
173 maxfd = fd; 169 maxfd = fd;
174 ts->ptyfd = fd; 170 ts->ptyfd = fd;