X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=init%2Finit.c;h=1caf45b8d40e51803ec0d92350bd9e7ff1a37874;hb=15437e3e2a0cc9e4ba25066fd562b2862d38799b;hp=ef387819c3604f59645cc1ddd7c6ec3d8efda6f8;hpb=3fa36e235021af5810333a52876d29efc661ad60;p=oweals%2Fbusybox.git diff --git a/init/init.c b/init/init.c index ef387819c..1caf45b8d 100644 --- a/init/init.c +++ b/init/init.c @@ -209,8 +209,9 @@ static void console_init(void) /* Make sure fd 0,1,2 are not closed * (so that they won't be used by future opens) */ bb_sanitize_stdio(); - /* Make sure init can't be blocked by writing to stderr */ - fcntl(STDERR_FILENO, F_SETFL, fcntl(STDERR_FILENO, F_GETFL) | O_NONBLOCK); +// Users report problems +// /* Make sure init can't be blocked by writing to stderr */ +// fcntl(STDERR_FILENO, F_SETFL, fcntl(STDERR_FILENO, F_GETFL) | O_NONBLOCK); } s = getenv("TERM");