aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2010-01-08 13:18:06 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-08 13:18:06 +0100
commitc3c1fb676b900ed39c0cfa984059c1d40197b601 (patch)
tree59c3e93def4b48ae3412ed19e9915f5f913e4019 /shell
parent999e442d5c11e97b7dfd6cadbbab30f7ac1dc6ce (diff)
downloadbusybox-c3c1fb676b900ed39c0cfa984059c1d40197b601.tar.gz
ash: fix mishandling of bash-style redirects
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 8d7c4ca75..2c1779f32 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -5111,7 +5111,7 @@ redirect(union node *redir, int flags)
do {
sv_pos++;
#if ENABLE_ASH_BASH_COMPAT
- if (redir->nfile.type == NTO2)
+ if (tmp->nfile.type == NTO2)
sv_pos++;
#endif
tmp = tmp->nfile.next;