diff options
author | pgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-07-20 18:33:12 +0000 |
---|---|---|
committer | pgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-07-20 18:33:12 +0000 |
commit | 9fce4b2554a83ea5efd122cdb5b056c1dbd910e9 (patch) | |
tree | a8f582c8a4aaade15569671e33f5a1ed0f2b02d8 /shell | |
parent | 6e3f1332f8b3098d7e0bc9c79dad652631a5a291 (diff) | |
download | busybox-w32-9fce4b2554a83ea5efd122cdb5b056c1dbd910e9.tar.gz busybox-w32-9fce4b2554a83ea5efd122cdb5b056c1dbd910e9.tar.bz2 busybox-w32-9fce4b2554a83ea5efd122cdb5b056c1dbd910e9.zip |
applyinf fix for:
0000155: variable expansion with braces in backticks in msh
git-svn-id: svn://busybox.net/trunk/busybox@10876 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r-- | shell/msh.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; | |||
4290 | } | 4290 | } |
4291 | 4291 | ||
4292 | var_name[var_index++] = *src++; | 4292 | var_name[var_index++] = *src++; |
4293 | while (isalnum(*src)) | 4293 | while (isalnum(*src) || *src=='_') |
4294 | var_name[var_index++] = *src++; | 4294 | var_name[var_index++] = *src++; |
4295 | var_name[var_index] = 0; | 4295 | var_name[var_index] = 0; |
4296 | 4296 | ||