diff options
author | Denis Vlasenko | 2006-11-26 15:45:17 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-26 15:45:17 +0000 |
commit | cf749bc10c9e7b38217e102d0d3e7044e5515b4f (patch) | |
tree | af6c1681e91a3e5c13bf3dce8aa798c07462468a /coreutils | |
parent | c1660fea6da93f4f8aacf0a9a65c2880ac58209a (diff) | |
download | busybox-cf749bc10c9e7b38217e102d0d3e7044e5515b4f.zip busybox-cf749bc10c9e7b38217e102d0d3e7044e5515b4f.tar.gz |
small fixes:
fix xstrdup to not grossly overallocate memory
use xopen instean of xopen3 in several places
etc.
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/dd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index 01702a5..01f37ab 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c @@ -138,7 +138,7 @@ int dd_main(int argc, char **argv) if (!seek && (flags & trunc_flag)) oflag |= O_TRUNC; - ofd = xopen3(outfile, oflag, 0666); + ofd = xopen(outfile, oflag); if (seek && (flags & trunc_flag)) { if (ftruncate(ofd, seek * obs) < 0) { |