aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-10 15:59:07 +0000
committervapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-10 15:59:07 +0000
commit3888d787196f7f18960bda0b96377e07805b0379 (patch)
tree57c944cb9803d7b279763eaa5ff5663dd3b18276
parenta6e4ade6bfa43c896174b663f48eb04a5dcf917b (diff)
downloadbusybox-w32-3888d787196f7f18960bda0b96377e07805b0379.tar.gz
busybox-w32-3888d787196f7f18960bda0b96377e07805b0379.tar.bz2
busybox-w32-3888d787196f7f18960bda0b96377e07805b0379.zip
touchup whitespace/english a bit more
git-svn-id: svn://busybox.net/trunk/busybox@15048 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--networking/telnetd.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/telnetd.c b/networking/telnetd.c
index 534af96ad..f2ca287cb 100644
--- a/networking/telnetd.c
+++ b/networking/telnetd.c
@@ -298,9 +298,8 @@ make_new_session(int sockfd)
298 send_iac(ts, WILL, TELOPT_ECHO); 298 send_iac(ts, WILL, TELOPT_ECHO);
299 send_iac(ts, WILL, TELOPT_SGA); 299 send_iac(ts, WILL, TELOPT_SGA);
300 300
301
302 if ((pid = fork()) < 0) { 301 if ((pid = fork()) < 0) {
303 syslog(LOG_ERR, "Can`t forking"); 302 syslog(LOG_ERR, "Could not fork");
304 } 303 }
305 if (pid == 0) { 304 if (pid == 0) {
306 /* In child, open the child's side of the tty. */ 305 /* In child, open the child's side of the tty. */
@@ -314,7 +313,7 @@ make_new_session(int sockfd)
314 if (open(tty_name, O_RDWR /*| O_NOCTTY*/) < 0) { 313 if (open(tty_name, O_RDWR /*| O_NOCTTY*/) < 0) {
315 syslog(LOG_ERR, "Could not open tty"); 314 syslog(LOG_ERR, "Could not open tty");
316 exit(1); 315 exit(1);
317 } 316 }
318 dup(0); 317 dup(0);
319 dup(0); 318 dup(0);
320 319