From: Jim Meyering Date: Thu, 26 Oct 1995 13:20:25 +0000 (+0000) Subject: (main): Use xfopen, not xtmpopen to open final output file. X-Git-Tag: FILEUTILS-3_12f~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b9485b8d524faf4cc22bc44901464f13e79536ea;p=platform%2Fupstream%2Fcoreutils.git (main): Use xfopen, not xtmpopen to open final output file. --- diff --git a/src/sort.c b/src/sort.c index edae0f8..f6c4f07 100644 --- a/src/sort.c +++ b/src/sort.c @@ -1857,7 +1857,7 @@ main (int argc, char **argv) files[i] = tmp; } } - ofp = xtmpfopen (outfile); + ofp = xfopen (outfile, "w"); } else ofp = stdout;