diff options
Diffstat (limited to 'toys/other')
-rw-r--r-- | toys/other/oneit.c | 3 |
1 files changed, 2 insertions, 1 deletions
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(). |