diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-05-10 15:59:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-05-10 15:59:07 +0000 |
commit | 62ec21d0cf37f64984b0cec4129b72402af10e5a (patch) | |
tree | 57c944cb9803d7b279763eaa5ff5663dd3b18276 /networking | |
parent | 731f81cbed87db586474582bae1236853abc22ef (diff) | |
download | busybox-w32-62ec21d0cf37f64984b0cec4129b72402af10e5a.tar.gz busybox-w32-62ec21d0cf37f64984b0cec4129b72402af10e5a.tar.bz2 busybox-w32-62ec21d0cf37f64984b0cec4129b72402af10e5a.zip |
touchup whitespace/english a bit more
Diffstat (limited to 'networking')
-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 | ||