aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-07-08 03:13:08 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2013-07-08 03:13:08 +0200
commite95738f63578c83be97a3236cd00510ef9375016 (patch)
tree3245c07a7d2f4f3d82327553891a846657f378ae
parentd87fcd48886f26373ca12bcfcff9cea44ce9fae4 (diff)
downloadbusybox-w32-e95738f63578c83be97a3236cd00510ef9375016.tar.gz
busybox-w32-e95738f63578c83be97a3236cd00510ef9375016.tar.bz2
busybox-w32-e95738f63578c83be97a3236cd00510ef9375016.zip
typo fix in comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index fc9b89b55..912ecf15f 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -1389,7 +1389,7 @@ static void restore_G_args(save_arg_t *sv, char **argv)
1389 * are set to '' (ignore) are NOT reset to defaults. We do the same. 1389 * are set to '' (ignore) are NOT reset to defaults. We do the same.
1390 * 1390 *
1391 * Problem: the above approach makes it unwieldy to catch signals while 1391 * Problem: the above approach makes it unwieldy to catch signals while
1392 * we are in read builtin, of while we read commands from stdin: 1392 * we are in read builtin, or while we read commands from stdin:
1393 * masked signals are not visible! 1393 * masked signals are not visible!
1394 * 1394 *
1395 * New implementation 1395 * New implementation