aboutsummaryrefslogtreecommitdiff
path: root/coreutils/dd.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-11-26 15:45:17 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-11-26 15:45:17 +0000
commitcf749bc10c9e7b38217e102d0d3e7044e5515b4f (patch)
treeaf6c1681e91a3e5c13bf3dce8aa798c07462468a /coreutils/dd.c
parentc1660fea6da93f4f8aacf0a9a65c2880ac58209a (diff)
downloadbusybox-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/dd.c')
-rw-r--r--coreutils/dd.c2
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)
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) {