aboutsummaryrefslogtreecommitdiff
path: root/toys/tee.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/tee.c')
-rw-r--r--toys/tee.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/toys/tee.c b/toys/tee.c
index 8c8f3d5c..c11fb5c4 100644
--- a/toys/tee.c
+++ b/toys/tee.c
@@ -52,7 +52,8 @@ void tee_main(void)
// Open output files
loopfiles_rw(toys.optargs,
- O_RDWR|O_CREAT|((toys.optflags&1)?O_APPEND:O_TRUNC), do_tee_open);
+ O_RDWR|O_CREAT|((toys.optflags&1)?O_APPEND:O_TRUNC), 0666, 0,
+ do_tee_open);
for (;;) {
struct fd_list *fdl;