OSDN Git Service

ash: fix mishandling of bash-style redirects
authorChris Metcalf <cmetcalf@tilera.com>
Fri, 8 Jan 2010 12:18:06 +0000 (13:18 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 8 Jan 2010 12:18:06 +0000 (13:18 +0100)
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash.c

index 8d7c4ca..2c1779f 100644 (file)
@@ -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;