aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index bad2c8044..3aae7d7c1 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)
1791 } 1791 }
1792 if (isdigit(c)) 1792 if (isdigit(c))
1793 continue; 1793 continue;
1794 if (strchr(" \t+-*/%_", c) != NULL) 1794 if (strchr(" \t+-*/%<>()_", c) != NULL)
1795 continue; 1795 continue;
1796 c |= 0x20; /* tolower */ 1796 c |= 0x20; /* tolower */
1797 if (c >= 'a' && c <= 'z') 1797 if (c >= 'a' && c <= 'z')