From ae4342ca3e30f7b11732ecda3ad15821e81bc314 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 19 May 2008 08:18:50 +0000 Subject: - 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 --- networking/telnetd.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'networking/telnetd.c') 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( /*ts->buf2 = ts->buf1 + BUFSIZE;*/ /* Got a new connection, set up a tty. */ - fd = getpty(tty_name); - if (fd < 0) { - bb_error_msg("can't create pty"); - return NULL; - } + fd = xgetpty(tty_name); if (fd > maxfd) maxfd = fd; ts->ptyfd = fd; -- cgit v1.2.3