diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/hush.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index bad2c80..3aae7d7 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -1791,7 +1791,7 @@ static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask) } if (isdigit(c)) continue; - if (strchr(" \t+-*/%_", c) != NULL) + if (strchr(" \t+-*/%<>()_", c) != NULL) continue; c |= 0x20; /* tolower */ if (c >= 'a' && c <= 'z') |