svn commit: trunk/busybox/networking

vapier at busybox.net vapier at busybox.net
Wed May 10 15:59:09 UTC 2006


Author: vapier
Date: 2006-05-10 08:59:07 -0700 (Wed, 10 May 2006)
New Revision: 15048

Log:
touchup whitespace/english a bit more

Modified:
   trunk/busybox/networking/telnetd.c


Changeset:
Modified: trunk/busybox/networking/telnetd.c
===================================================================
--- trunk/busybox/networking/telnetd.c	2006-05-10 15:23:12 UTC (rev 15047)
+++ trunk/busybox/networking/telnetd.c	2006-05-10 15:59:07 UTC (rev 15048)
@@ -298,9 +298,8 @@
 	send_iac(ts, WILL, TELOPT_ECHO);
 	send_iac(ts, WILL, TELOPT_SGA);
 
-
 	if ((pid = fork()) < 0) {
-		syslog(LOG_ERR, "Can`t forking");
+		syslog(LOG_ERR, "Could not fork");
 	}
 	if (pid == 0) {
 		/* In child, open the child's side of the tty.  */
@@ -314,7 +313,7 @@
 		if (open(tty_name, O_RDWR /*| O_NOCTTY*/) < 0) {
 			syslog(LOG_ERR, "Could not open tty");
 			exit(1);
-			}
+		}
 		dup(0);
 		dup(0);
 




More information about the busybox-cvs mailing list