From: Denys Vlasenko Date: Mon, 18 Oct 2010 00:43:57 +0000 (+0200) Subject: sort: -o FILE should create/truncate FILE X-Git-Tag: 1_18_0~129 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5fe2f863b9cee5ab0e7ac873538bce48846dbad8;p=oweals%2Fbusybox.git sort: -o FILE should create/truncate FILE Signed-off-by: Denys Vlasenko --- diff --git a/coreutils/sort.c b/coreutils/sort.c index 716824321..eccc2d437 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c @@ -412,7 +412,7 @@ int sort_main(int argc UNUSED_PARAM, char **argv) #if ENABLE_FEATURE_SORT_BIG /* Open output file _after_ we read all input ones */ if (option_mask32 & FLAG_o) - xmove_fd(xopen(str_o, O_WRONLY), STDOUT_FILENO); + xmove_fd(xopen(str_o, O_WRONLY|O_CREAT|O_TRUNC), STDOUT_FILENO); #endif flag = (option_mask32 & FLAG_z) ? '\0' : '\n'; for (i = 0; i < linecount; i++)