aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-04-02 17:25:18 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2018-04-02 17:25:18 +0200
commitabf755615e5f20c3bbe7534fa29c72fd684ea616 (patch)
tree281642aba72686a4179456235c73c3392d5a5bf5 /shell/hush.c
parent9a95df90463ee0eddc0585f0e5affa827701fdfb (diff)
downloadbusybox-abf755615e5f20c3bbe7534fa29c72fd684ea616.tar.gz
hush: fix a backslash-removal bug in case
function old new delta run_list 1270 1053 -217 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 1779009e0..867a921ec 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -6347,7 +6347,7 @@ static char *expand_string_to_string(const char *str, int do_unbackslash)
return (char*)list;
}
-#if ENABLE_HUSH_CASE
+#if 0
static char* expand_strvec_to_string(char **argv)
{
char **list;
@@ -8731,8 +8731,10 @@ static int run_list(struct pipe *pi)
#if ENABLE_HUSH_CASE
if (rword == RES_CASE) {
debug_printf_exec("CASE cond_code:%d\n", cond_code);
- case_word = expand_strvec_to_string(pi->cmds->argv);
- unbackslash(case_word);
+ case_word = expand_string_to_string(pi->cmds->argv[0], 1);
+ debug_printf_exec("CASE word1:'%s'\n", case_word);
+ //unbackslash(case_word);
+ //debug_printf_exec("CASE word2:'%s'\n", case_word);
continue;
}
if (rword == RES_MATCH) {