diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-16 12:57:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-16 12:57:12 +0000 |
commit | c29903221de5b0c63b79ab40e9dc53f497be24fb (patch) | |
tree | d40e71ef14b036663be3d8ec4f24e00aede157ec /shell/hush.c | |
parent | 3e7b0e61200b118fd83f56fc3ebaeedba455600e (diff) | |
download | busybox-w32-c29903221de5b0c63b79ab40e9dc53f497be24fb.tar.gz busybox-w32-c29903221de5b0c63b79ab40e9dc53f497be24fb.tar.bz2 busybox-w32-c29903221de5b0c63b79ab40e9dc53f497be24fb.zip |
hush: fix English in comment
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
552 | 552 | ||
553 | debug_printf_jobs("got tty sig %d in pid %d\n", sig, getpid()); | 553 | debug_printf_jobs("got tty sig %d in pid %d\n", sig, getpid()); |
554 | pid = fork(); | 554 | pid = fork(); |
555 | if (pid < 0) /* can't fork. Pretend there were no ctrl-Z */ | 555 | if (pid < 0) /* can't fork. Pretend there was no ctrl-Z */ |
556 | return; | 556 | return; |
557 | ctrl_z_flag = 1; | 557 | ctrl_z_flag = 1; |
558 | if (!pid) { /* child */ | 558 | if (!pid) { /* child */ |