diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-23 16:28:53 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-23 16:28:53 +0000 |
commit | 211b59be431350b2cc6685f5365ad5e6b597dc18 (patch) | |
tree | 6903efecb79a78fe1606cbdb48248a8b4fda7b1f | |
parent | 2f5d0cd5117e4b395e7eab19d1a9727d6c921d49 (diff) | |
download | busybox-w32-211b59be431350b2cc6685f5365ad5e6b597dc18.tar.gz busybox-w32-211b59be431350b2cc6685f5365ad5e6b597dc18.tar.bz2 busybox-w32-211b59be431350b2cc6685f5365ad5e6b597dc18.zip |
hush: trivial fix in debug code
-rw-r--r-- | shell/hush.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index 4d7d14b1a..02eae7d5b 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -2249,7 +2249,7 @@ static int free_pipe(struct pipe *pi, int indent) | |||
2249 | debug_printf_clean("%s (nil)\n", indenter(indent)); | 2249 | debug_printf_clean("%s (nil)\n", indenter(indent)); |
2250 | } | 2250 | } |
2251 | for (r = child->redirects; r; r = rnext) { | 2251 | for (r = child->redirects; r; r = rnext) { |
2252 | debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->type].descrip); | 2252 | debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip); |
2253 | if (r->dup == -1) { | 2253 | if (r->dup == -1) { |
2254 | /* guard against the case >$FOO, where foo is unset or blank */ | 2254 | /* guard against the case >$FOO, where foo is unset or blank */ |
2255 | if (r->rd_filename) { | 2255 | if (r->rd_filename) { |