From b843203842448f144f895f7b4c5b2adb3af69048 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 9 Aug 2014 23:49:48 -0500 Subject: Disable xopen's default O_CLOEXEC for oneit. --- toys/other/oneit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'toys/other/oneit.c') diff --git a/toys/other/oneit.c b/toys/other/oneit.c index 5bf4e941..72395cce 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(). -- cgit v1.2.3