aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-26 20:06:14 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-26 20:06:14 +0000
commit572930027d5d86a18ebd68d5f4273150a2f302e1 (patch)
tree67f35d015b39c678bc3d2e271c956b6e356fa0d4 /shell/hush.c
parent5b7589eb27e748a3d281c0341219cf7435e8b4f1 (diff)
downloadbusybox-572930027d5d86a18ebd68d5f4273150a2f302e1.tar.gz
hush: nommu fix for function passing
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 2ad8ebacb..292b8b2e3 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;
}