diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-10 15:59:07 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-10 15:59:07 +0000 |
commit | 3888d787196f7f18960bda0b96377e07805b0379 (patch) | |
tree | 57c944cb9803d7b279763eaa5ff5663dd3b18276 | |
parent | a6e4ade6bfa43c896174b663f48eb04a5dcf917b (diff) | |
download | busybox-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.c | 5 |
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 | ||