gitignore: add *.rej and *.orig to .gitignore
[openwrt.git] / package / busybox / patches / 000-upstream-sort.patch
1 diff -urpN busybox-1.17.3/coreutils/sort.c busybox-1.17.3-sort/coreutils/sort.c
2 --- busybox-1.17.3/coreutils/sort.c     2010-10-09 21:57:13.000000000 +0200
3 +++ busybox-1.17.3-sort/coreutils/sort.c        2010-10-20 15:17:35.320293543 +0200
4 @@ -412,7 +412,7 @@ int sort_main(int argc UNUSED_PARAM, cha
5  #if ENABLE_FEATURE_SORT_BIG
6         /* Open output file _after_ we read all input ones */
7         if (option_mask32 & FLAG_o)
8 -               xmove_fd(xopen3(str_o, O_WRONLY, 0666), STDOUT_FILENO);
9 +               xmove_fd(xopen3(str_o, O_WRONLY|O_CREAT|O_TRUNC, 0666), STDOUT_FILENO);
10  #endif
11         flag = (option_mask32 & FLAG_z) ? '\0' : '\n';
12         for (i = 0; i < linecount; i++)