diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-26 15:45:17 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-26 15:45:17 +0000 |
commit | cf749bc10c9e7b38217e102d0d3e7044e5515b4f (patch) | |
tree | af6c1681e91a3e5c13bf3dce8aa798c07462468a /coreutils | |
parent | c1660fea6da93f4f8aacf0a9a65c2880ac58209a (diff) | |
download | busybox-w32-cf749bc10c9e7b38217e102d0d3e7044e5515b4f.tar.gz busybox-w32-cf749bc10c9e7b38217e102d0d3e7044e5515b4f.tar.bz2 busybox-w32-cf749bc10c9e7b38217e102d0d3e7044e5515b4f.zip |
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 01702a580..01f37abeb 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c | |||
@@ -138,7 +138,7 @@ int dd_main(int argc, char **argv) | |||
138 | if (!seek && (flags & trunc_flag)) | 138 | if (!seek && (flags & trunc_flag)) |
139 | oflag |= O_TRUNC; | 139 | oflag |= O_TRUNC; |
140 | 140 | ||
141 | ofd = xopen3(outfile, oflag, 0666); | 141 | ofd = xopen(outfile, oflag); |
142 | 142 | ||
143 | if (seek && (flags & trunc_flag)) { | 143 | if (seek && (flags & trunc_flag)) { |
144 | if (ftruncate(ofd, seek * obs) < 0) { | 144 | if (ftruncate(ofd, seek * obs) < 0) { |