svn commit: trunk/busybox/shell

vda at busybox.net vda at busybox.net
Wed May 16 05:57:13 PDT 2007


Author: vda
Date: 2007-05-16 05:57:12 -0700 (Wed, 16 May 2007)
New Revision: 18635

Log:
hush: fix English in comment


Modified:
   trunk/busybox/shell/hush.c


Changeset:
Modified: trunk/busybox/shell/hush.c
===================================================================
--- trunk/busybox/shell/hush.c	2007-05-16 12:52:15 UTC (rev 18634)
+++ trunk/busybox/shell/hush.c	2007-05-16 12:57:12 UTC (rev 18635)
@@ -552,7 +552,7 @@
 
 	debug_printf_jobs("got tty sig %d in pid %d\n", sig, getpid());
 	pid = fork();
-	if (pid < 0) /* can't fork. Pretend there were no ctrl-Z */
+	if (pid < 0) /* can't fork. Pretend there was no ctrl-Z */
 		return;
 	ctrl_z_flag = 1;
 	if (!pid) { /* child */



More information about the busybox-cvs mailing list