busybox: restore previous inittab handling when terminal can't be accessed (closes: #6181)
SVN-Revision: 18485
This commit is contained in:
parent
bb4a7fcec3
commit
0153a9bfea
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
||||||
*/
|
*/
|
||||||
- if (a->pid == 0)
|
- if (a->pid == 0)
|
||||||
+ if (a->pid == 0) {
|
+ if (a->pid == 0) {
|
||||||
+ if (a->terminal && access(a->terminal, R_OK | W_OK))
|
+ if (a->terminal[0] && access(a->terminal, R_OK | W_OK))
|
||||||
+ continue;
|
+ continue;
|
||||||
a->pid = run(a);
|
a->pid = run(a);
|
||||||
+ }
|
+ }
|
||||||
|
|
Loading…
Reference in a new issue