aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-10 13:51:56 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-10 13:51:56 +0000
commit835fcfd33d574d471d9b67a69116281d9ff42040 (patch)
treee9587efa58f4eed232f3a540999e13ca4734d51f /shell/hush.c
parent0b677d833718ab6c46bd4790c662c67fba4f377a (diff)
downloadbusybox-835fcfd33d574d471d9b67a69116281d9ff42040.tar.gz
hush: reinstate accidentally reverted comment fix
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index e3dfa0673..9adf0e127 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -344,7 +344,8 @@ typedef enum redir_type {
REDIRFD_CLOSE = -3,
REDIRFD_SYNTAX_ERR = -2,
- REDIRFD_TO_FILE = -1, /* otherwise, rd_fd if redirected to rd_dup */
+ REDIRFD_TO_FILE = -1,
+ /* otherwise, rd_fd is redirected to rd_dup */
HEREDOC_SKIPTABS = 1,
HEREDOC_QUOTED = 2,