From 59d13f103f3b50c8f6c8f2a5fb09244ddd1b8320 Mon Sep 17 00:00:00 2001 From: vda Date: Wed, 16 May 2007 12:57:12 +0000 Subject: hush: fix English in comment git-svn-id: svn://busybox.net/trunk/busybox@18635 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- shell/hush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell') diff --git a/shell/hush.c b/shell/hush.c index 2e78e4a04..f55118460 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -552,7 +552,7 @@ static void handler_ctrl_z(int sig) 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 */ -- cgit v1.2.3-55-g6feb