aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 90191408d..920a85299 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -93,7 +93,7 @@
93 * add =~ regex match operator: STR =~ REGEX 93 * add =~ regex match operator: STR =~ REGEX
94 */ 94 */
95//config:config HUSH 95//config:config HUSH
96//config: bool "hush (64 kb)" 96//config: bool "hush (68 kb)"
97//config: default y 97//config: default y
98//config: help 98//config: help
99//config: hush is a small shell. It handles the normal flow control 99//config: hush is a small shell. It handles the normal flow control
@@ -5998,7 +5998,7 @@ static const char *first_special_char_in_vararg(const char *cp)
5998#endif 5998#endif
5999static char *encode_then_expand_vararg(const char *str, int handle_squotes, int do_unbackslash) 5999static char *encode_then_expand_vararg(const char *str, int handle_squotes, int do_unbackslash)
6000{ 6000{
6001#if !BASH_PATTERN_SUBST 6001#if !BASH_PATTERN_SUBST && ENABLE_HUSH_CASE
6002 const int do_unbackslash = 0; 6002 const int do_unbackslash = 0;
6003#endif 6003#endif
6004 char *exp_str; 6004 char *exp_str;
@@ -11442,7 +11442,7 @@ static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid
11442 * and get stuck in sigsuspend... 11442 * and get stuck in sigsuspend...
11443 */ 11443 */
11444 sigfillset(&oldset); /* block all signals, remember old set */ 11444 sigfillset(&oldset); /* block all signals, remember old set */
11445 sigprocmask(SIG_SETMASK, &oldset, &oldset); 11445 sigprocmask2(SIG_SETMASK, &oldset);
11446 11446
11447 if (!sigisemptyset(&G.pending_set)) { 11447 if (!sigisemptyset(&G.pending_set)) {
11448 /* Crap! we raced with some signal! */ 11448 /* Crap! we raced with some signal! */