From 54690dc0b25d5413445d190696707478a9e8f604 Mon Sep 17 00:00:00 2001 From: Paul Fox Date: Wed, 20 Jul 2005 18:33:12 +0000 Subject: applyinf fix for: 0000155: variable expansion with braces in backticks in msh --- shell/msh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell/msh.c') diff --git a/shell/msh.c b/shell/msh.c index 2fb0df739..14e875854 100644 --- a/shell/msh.c +++ b/shell/msh.c @@ -4290,7 +4290,7 @@ int quoted; } var_name[var_index++] = *src++; - while (isalnum(*src)) + while (isalnum(*src) || *src=='_') var_name[var_index++] = *src++; var_name[var_index] = 0; -- cgit v1.2.3