From: Rob Landley Date: Sun, 10 Aug 2014 04:49:48 +0000 (-0500) Subject: Disable xopen's default O_CLOEXEC for oneit. X-Git-Tag: 0.5.0~88 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b843203842448f144f895f7b4c5b2adb3af69048;p=platform%2Fupstream%2Ftoybox.git Disable xopen's default O_CLOEXEC for oneit. --- diff --git a/toys/other/oneit.c b/toys/other/oneit.c index 5bf4e94..72395cc 100644 --- a/toys/other/oneit.c +++ b/toys/other/oneit.c @@ -65,7 +65,8 @@ void oneit_main(void) setsid(); for (i=0; i<3; i++) { close(i); - xopen(TT.console ? TT.console : "/dev/tty0", O_RDWR); + // Remember, O_CLOEXEC is backwards for xopen() + xopen(TT.console ? TT.console : "/dev/tty0", O_RDWR|O_CLOEXEC); } // Can't xexec() here, because we vforked so we don't want to error_exit().