projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b6c8434
)
ash: fix handling of Unicode chars in redirects. Fixes bug 585
author
Denys Vlasenko
<vda.linux@googlemail.com>
Sat, 29 Aug 2009 18:24:12 +0000
(20:24 +0200)
committer
Denys Vlasenko
<vda.linux@googlemail.com>
Sat, 29 Aug 2009 18:24:12 +0000
(20:24 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash.c
patch
|
blob
|
history
diff --git
a/shell/ash.c
b/shell/ash.c
index f9c89f13fc577345a58ce0f128716eb146a574aa..1690c469b867d8b1e58c9588fd3445b5fb2e9cf9 100644
(file)
--- a/
shell/ash.c
+++ b/
shell/ash.c
@@
-5817,7
+5817,7
@@
argstr(char *p, int flag, struct strlist *var_str_list)
};
const char *reject = spclchars;
int c;
- int quotes = flag & (EXP_FULL | EXP_CASE
);
/* do CTLESC */
+ int quotes = flag & (EXP_FULL | EXP_CASE
| EXP_REDIR);
/* do CTLESC */
int breakall = flag & EXP_WORD;
int inquotes;
size_t length;