diff options
author | Denys Vlasenko | 2010-10-18 02:38:27 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-10-18 02:38:27 +0200 |
commit | c05387d5deca9e57c38077debc0f705199f32006 (patch) | |
tree | f7b5b0983a5008b4ae55d60b80d86c84665bb7ed /editors/patch_toybox.c | |
parent | 36af2f7977edc818af8c01392ef700439a9fe163 (diff) | |
download | busybox-c05387d5deca9e57c38077debc0f705199f32006.zip busybox-c05387d5deca9e57c38077debc0f705199f32006.tar.gz |
*: 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 'editors/patch_toybox.c')
-rw-r--r-- | editors/patch_toybox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/patch_toybox.c b/editors/patch_toybox.c index 04bd98e..a60bf07 100644 --- a/editors/patch_toybox.c +++ b/editors/patch_toybox.c @@ -559,7 +559,7 @@ int patch_main(int argc UNUSED_PARAM, char **argv) xmkpath(name, -1); *s = '/'; } - TT.filein = xopen3(name, O_CREAT|O_EXCL|O_RDWR, 0666); + TT.filein = xopen(name, O_CREAT|O_EXCL|O_RDWR); } else { printf("patching file %s\n", name); TT.filein = xopen(name, O_RDWR); |