summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
Diffstat (limited to 'init')
-rw-r--r--init/init.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/init/init.c b/init/init.c
index 481f55167..2eb8f1a54 100644
--- a/init/init.c
+++ b/init/init.c
@@ -568,9 +568,7 @@ static void parse_inittab(void)
568 goto bad_entry; 568 goto bad_entry;
569 /* turn .*TTY -> /dev/TTY */ 569 /* turn .*TTY -> /dev/TTY */
570 if (tty[0]) { 570 if (tty[0]) {
571 if (strncmp(tty, "/dev/", 5) == 0) 571 tty = concat_path_file("/dev/", skip_dev_pfx(tty));
572 tty += 5;
573 tty = concat_path_file("/dev/", tty);
574 } 572 }
575 new_init_action(1 << action, token[3], tty); 573 new_init_action(1 << action, token[3], tty);
576 if (tty[0]) 574 if (tty[0])