diff options
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 524910950..bb9464af9 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -6400,7 +6400,7 @@ varvalue(char *name, int varflags, int flags, struct strlist *var_str_list) | |||
6400 | case '7': | 6400 | case '7': |
6401 | case '8': | 6401 | case '8': |
6402 | case '9': | 6402 | case '9': |
6403 | num = number(name); | 6403 | num = atoi(name); /* number(name) fails on ${var#str} etc */ |
6404 | if (num < 0 || num > shellparam.nparam) | 6404 | if (num < 0 || num > shellparam.nparam) |
6405 | return -1; | 6405 | return -1; |
6406 | p = num ? shellparam.p[num - 1] : arg0; | 6406 | p = num ? shellparam.p[num - 1] : arg0; |