From: Denis Vlasenko Date: Fri, 10 Apr 2009 13:51:56 +0000 (-0000) Subject: hush: reinstate accidentally reverted comment fix X-Git-Tag: 1_14_0~37 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=835fcfd33d574d471d9b67a69116281d9ff42040;p=oweals%2Fbusybox.git hush: reinstate accidentally reverted comment fix --- 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,