From cf749bc10c9e7b38217e102d0d3e7044e5515b4f Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 26 Nov 2006 15:45:17 +0000 Subject: small fixes: fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc. --- coreutils/dd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/dd.c') 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) { -- cgit v1.2.3