aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-10 11:13:26 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-10 11:13:26 +0000
commit551bdfecb7cfb4df0f127d34884e0a9502324acd (patch)
tree50506c5aaf268a22825d1962e43243712f1ab052
parented7823738cea677a1db59761158ce6918fa34ab2 (diff)
downloadbusybox-w32-551bdfecb7cfb4df0f127d34884e0a9502324acd.tar.gz
busybox-w32-551bdfecb7cfb4df0f127d34884e0a9502324acd.tar.bz2
busybox-w32-551bdfecb7cfb4df0f127d34884e0a9502324acd.zip
hush: fix typo in comment
-rw-r--r--shell/hush.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index db99cc908..bb4fdc295 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -344,7 +344,8 @@ typedef enum redir_type {
344 344
345 REDIRFD_CLOSE = -3, 345 REDIRFD_CLOSE = -3,
346 REDIRFD_SYNTAX_ERR = -2, 346 REDIRFD_SYNTAX_ERR = -2,
347 REDIRFD_TO_FILE = -1, /* otherwise, rd_fd if redirected to rd_dup */ 347 REDIRFD_TO_FILE = -1,
348 /* otherwise, rd_fd is redirected to rd_dup */
348 349
349 HEREDOC_SKIPTABS = 1, 350 HEREDOC_SKIPTABS = 1,
350 HEREDOC_QUOTED = 2, 351 HEREDOC_QUOTED = 2,