aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/hush.c2
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)
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 */