aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
Diffstat (limited to 'init')
-rw-r--r--init/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/init/init.c b/init/init.c
index 884603af3..e02773cc0 100644
--- a/init/init.c
+++ b/init/init.c
@@ -701,13 +701,13 @@ static void parse_inittab(void)
701 new_init_action(ASKFIRST, bb_default_login_shell, VC_4); 701 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
702 /* sysinit */ 702 /* sysinit */
703 new_init_action(SYSINIT, INIT_SCRIPT, ""); 703 new_init_action(SYSINIT, INIT_SCRIPT, "");
704
705 return; 704 return;
706 } 705 }
707 /* optional_tty:ignored_runlevel:action:command 706 /* optional_tty:ignored_runlevel:action:command
708 * Delims are not to be collapsed and need exactly 4 tokens 707 * Delims are not to be collapsed and need exactly 4 tokens
709 */ 708 */
710 while (config_read(parser, token, 4, 0, "#:", PARSE_DONT_TRIM|PARSE_DONT_REDUCE|PARSE_LAST_IS_GREEDY)) { 709 while (config_read(parser, token, 4, 0, "#:",
710 PARSE_NORMAL & ~(PARSE_TRIM | PARSE_COLLAPSE))) {
711 int action; 711 int action;
712 char *tty = token[0]; 712 char *tty = token[0];
713 713