commit | c3c1fb676b900ed39c0cfa984059c1d40197b601 | [log] [tgz] |
---|---|---|
author | Chris Metcalf <cmetcalf@tilera.com> | Fri Jan 08 13:18:06 2010 +0100 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Fri Jan 08 13:18:06 2010 +0100 |
tree | 59c3e93def4b48ae3412ed19e9915f5f913e4019 | |
parent | 999e442d5c11e97b7dfd6cadbbab30f7ac1dc6ce [diff] |
ash: fix mishandling of bash-style redirects Signed-off-by: Chris Metcalf <cmetcalf@tilera.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/shell/ash.c b/shell/ash.c index 8d7c4ca..2c1779f 100644 --- a/shell/ash.c +++ b/shell/ash.c
@@ -5111,7 +5111,7 @@ 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;