diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-18 02:38:27 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-18 02:38:27 +0200 |
commit | c05387d5deca9e57c38077debc0f705199f32006 (patch) | |
tree | f7b5b0983a5008b4ae55d60b80d86c84665bb7ed /coreutils | |
parent | 36af2f7977edc818af8c01392ef700439a9fe163 (diff) | |
download | busybox-w32-c05387d5deca9e57c38077debc0f705199f32006.tar.gz busybox-w32-c05387d5deca9e57c38077debc0f705199f32006.tar.bz2 busybox-w32-c05387d5deca9e57c38077debc0f705199f32006.zip |
*: replace xopen3 with xopen where makes sense
function old new delta
uniq_main 421 416 -5
sort_main 803 798 -5
patch_main 2051 2046 -5
cpio_main 547 542 -5
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/sort.c | 2 | ||||
-rw-r--r-- | coreutils/uniq.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c index 4407b7105..716824321 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(xopen(str_o, O_WRONLY), 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++) |
diff --git a/coreutils/uniq.c b/coreutils/uniq.c index f0364b9a1..358de7894 100644 --- a/coreutils/uniq.c +++ b/coreutils/uniq.c | |||
@@ -52,8 +52,8 @@ int uniq_main(int argc UNUSED_PARAM, char **argv) | |||
52 | if (output[0] != '-' || output[1]) { | 52 | if (output[0] != '-' || output[1]) { |
53 | // Won't work with "uniq - FILE" and closed stdin: | 53 | // Won't work with "uniq - FILE" and closed stdin: |
54 | //close(STDOUT_FILENO); | 54 | //close(STDOUT_FILENO); |
55 | //xopen3(output, O_WRONLY | O_CREAT | O_TRUNC, 0666); | 55 | //xopen(output, O_WRONLY | O_CREAT | O_TRUNC); |
56 | xmove_fd(xopen3(output, O_WRONLY | O_CREAT | O_TRUNC, 0666), STDOUT_FILENO); | 56 | xmove_fd(xopen(output, O_WRONLY | O_CREAT | O_TRUNC), STDOUT_FILENO); |
57 | } | 57 | } |
58 | } | 58 | } |
59 | } | 59 | } |