aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c
index f2c0a70f2..3ca04494c 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -442,7 +442,7 @@ enum {
442 MAYBE_ASSIGNMENT = 0, 442 MAYBE_ASSIGNMENT = 0,
443 DEFINITELY_ASSIGNMENT = 1, 443 DEFINITELY_ASSIGNMENT = 1,
444 NOT_ASSIGNMENT = 2, 444 NOT_ASSIGNMENT = 2,
445 /* Not an assigment, but next word may be: "if v=xyz cmd;" */ 445 /* Not an assignment, but next word may be: "if v=xyz cmd;" */
446 WORD_IS_KEYWORD = 3, 446 WORD_IS_KEYWORD = 3,
447}; 447};
448/* Used for initialization: o_string foo = NULL_O_STRING; */ 448/* Used for initialization: o_string foo = NULL_O_STRING; */
@@ -5390,7 +5390,6 @@ static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
5390 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); 5390 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
5391 } 5391 }
5392 break; 5392 break;
5393
5394 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ 5393 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5395 5394
5396 if (val && val[0]) { 5395 if (val && val[0]) {