aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2009-11-22 17:00:50 +0000
committerNicolas Thill <nico@openwrt.org>2009-11-22 17:00:50 +0000
commit4533fe58cd498859f5f5cdb8aeee61efa2760867 (patch)
treeec328d4745584978a97460491354d00c7c707798 /package/busybox
parentfdc4247f72889c6db8a208d03ba158613b287778 (diff)
downloadmaster-187ad058-4533fe58cd498859f5f5cdb8aeee61efa2760867.tar.gz
master-187ad058-4533fe58cd498859f5f5cdb8aeee61efa2760867.tar.bz2
master-187ad058-4533fe58cd498859f5f5cdb8aeee61efa2760867.zip
busybox: restore previous inittab handling when terminal can't be accessed (closes: #6181)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18485 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox')
-rw-r--r--package/busybox/patches/001-init_avoid_loop_opening_tty.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/busybox/patches/001-init_avoid_loop_opening_tty.patch b/package/busybox/patches/001-init_avoid_loop_opening_tty.patch
index 8cc9ca2c89..8f0ef1fc0a 100644
--- a/package/busybox/patches/001-init_avoid_loop_opening_tty.patch
+++ b/package/busybox/patches/001-init_avoid_loop_opening_tty.patch
@@ -6,7 +6,7 @@
*/
- 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;
a->pid = run(a);
+ }