commit | f8d8aa1cea915ce115345e6e729eddc80e86f021 | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Tue Apr 06 18:50:05 2010 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Tue Apr 06 18:50:05 2010 +0200 |
tree | abceef94710d221816cf56343b7cadf10de50e5c | |
parent | 87fb72032e6aa6abe5ac8fb05d22f43e8dde557b [diff] [blame] |
libbb: add skip_dev_pfx() Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/init/init.c b/init/init.c index 481f551..2eb8f1a 100644 --- a/init/init.c +++ b/init/init.c
@@ -568,9 +568,7 @@ goto bad_entry; /* turn .*TTY -> /dev/TTY */ if (tty[0]) { - if (strncmp(tty, "/dev/", 5) == 0) - tty += 5; - tty = concat_path_file("/dev/", tty); + tty = concat_path_file("/dev/", skip_dev_pfx(tty)); } new_init_action(1 << action, token[3], tty); if (tty[0])