aboutsummaryrefslogtreecommitdiff
path: root/coreutils/sort.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/sort.c')
-rw-r--r--coreutils/sort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c
index 5c3fa1a71..237ac083c 100644
--- a/coreutils/sort.c
+++ b/coreutils/sort.c
@@ -412,7 +412,7 @@ int sort_main(int argc UNUSED_PARAM, char **argv)
412#if ENABLE_FEATURE_SORT_BIG 412#if ENABLE_FEATURE_SORT_BIG
413 /* Open output file _after_ we read all input ones */ 413 /* Open output file _after_ we read all input ones */
414 if (option_mask32 & FLAG_o) 414 if (option_mask32 & FLAG_o)
415 xmove_fd(xopen3(str_o, O_WRONLY, 0666), STDOUT_FILENO); 415 xmove_fd(xopen3(str_o, O_WRONLY|O_CREAT|O_TRUNC, 0666), STDOUT_FILENO);
416#endif 416#endif
417 flag = (option_mask32 & FLAG_z) ? '\0' : '\n'; 417 flag = (option_mask32 & FLAG_z) ? '\0' : '\n';
418 for (i = 0; i < linecount; i++) 418 for (i = 0; i < linecount; i++)