cttyhack: fail gracefully if the device node is missing
Signed-off-by: Kevin Cernekee <cernekee@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
064e99646a
commit
43a668b2ee
@ -146,7 +146,9 @@ int cttyhack_main(int argc UNUSED_PARAM, char **argv)
|
||||
goto ret;
|
||||
} while (0);
|
||||
|
||||
fd = xopen(console, O_RDWR);
|
||||
fd = open_or_warn(console, O_RDWR);
|
||||
if (fd < 0)
|
||||
goto ret;
|
||||
//bb_error_msg("switching to '%s'", console);
|
||||
dup2(fd, 0);
|
||||
dup2(fd, 1);
|
||||
|
Loading…
Reference in New Issue
Block a user