diff options
author | Denis Vlasenko | 2009-04-26 20:06:14 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-04-26 20:06:14 +0000 |
commit | 572930027d5d86a18ebd68d5f4273150a2f302e1 (patch) | |
tree | 67f35d015b39c678bc3d2e271c956b6e356fa0d4 /shell/hush.c | |
parent | 5b7589eb27e748a3d281c0341219cf7435e8b4f1 (diff) | |
download | busybox-572930027d5d86a18ebd68d5f4273150a2f302e1.zip busybox-572930027d5d86a18ebd68d5f4273150a2f302e1.tar.gz |
hush: nommu fix for function passing
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index 2ad8eba..292b8b2 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -5328,9 +5328,12 @@ static int parse_stream_dquoted(o_string *as_string, * within double quotes by preceding it with a backslash. */ if (strchr("$`\"\\", next) != NULL) { - o_addqchr(dest, i_getch(input)); + ch = i_getch(input); + o_addqchr(dest, ch); + nommu_addchr(as_string, ch); } else { o_addqchr(dest, '\\'); + nommu_addchr(as_string, '\\'); } goto again; } |