aboutsummaryrefslogtreecommitdiff
path: root/coreutils/dd.c
diff options
context:
space:
mode:
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)
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) {