svn commit: trunk/busybox/shell

vda at busybox.net vda at busybox.net
Mon Jun 23 16:28:54 UTC 2008


Author: vda
Date: 2008-06-23 09:28:53 -0700 (Mon, 23 Jun 2008)
New Revision: 22482

Log:
hush: trivial fix in debug code



Modified:
   trunk/busybox/shell/hush.c


Changeset:
Modified: trunk/busybox/shell/hush.c
===================================================================
--- trunk/busybox/shell/hush.c	2008-06-23 13:47:37 UTC (rev 22481)
+++ trunk/busybox/shell/hush.c	2008-06-23 16:28:53 UTC (rev 22482)
@@ -2249,7 +2249,7 @@
 			debug_printf_clean("%s   (nil)\n", indenter(indent));
 		}
 		for (r = child->redirects; r; r = rnext) {
-			debug_printf_clean("%s   redirect %d%s", indenter(indent), r->fd, redir_table[r->type].descrip);
+			debug_printf_clean("%s   redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip);
 			if (r->dup == -1) {
 				/* guard against the case >$FOO, where foo is unset or blank */
 				if (r->rd_filename) {




More information about the busybox-cvs mailing list