From 784eb9c2d2cbd8ec49ff40dbaba17f4407f3b85a Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 14 Oct 2014 14:16:34 -0500 Subject: Use O_CLOEXEC instead of O_RDONLY to signal loopfiles_rw() to close filehandles. --- toys/other/truncate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/other') diff --git a/toys/other/truncate.c b/toys/other/truncate.c index 123ae553..d09818f3 100644 --- a/toys/other/truncate.c +++ b/toys/other/truncate.c @@ -35,6 +35,6 @@ void truncate_main(void) // Create files with mask rwrwrw. // Nonexistent files are only an error if we're supposed to create them. - loopfiles_rw(toys.optargs, O_WRONLY|(cr ? O_CREAT : 0), 0666, cr, + loopfiles_rw(toys.optargs, O_WRONLY|O_CLOEXEC|(cr ? O_CREAT : 0), 0666, cr, do_truncate); } -- cgit v1.2.3