aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/io/unix.c
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <coudert@clipper.ens.fr>2005-08-07 00:57:46 +0200
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>2005-08-06 22:57:46 +0000
commite087fdd81c5f4bf07d629811f5cec2a27b8377f8 (patch)
tree6498749cbf2e63a2b2e64c446f2702bb36c40f32 /libgfortran/io/unix.c
parent9f6206d9df6963318e5bf2ea6ddc5c747f46ff37 (diff)
downloadgcc-e087fdd81c5f4bf07d629811f5cec2a27b8377f8.zip
gcc-e087fdd81c5f4bf07d629811f5cec2a27b8377f8.tar.gz
gcc-e087fdd81c5f4bf07d629811f5cec2a27b8377f8.tar.bz2
io.h: Change DEFAULT_TEMPDIR to /tmp instead of /var/tmp.
* io/io.h: Change DEFAULT_TEMPDIR to /tmp instead of /var/tmp. * io/unix.c (tempfile): Look at the TEMP environment variable to find the temporary files directory. Whitespace correction. From-SVN: r102822
Diffstat (limited to 'libgfortran/io/unix.c')
-rw-r--r--libgfortran/io/unix.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c
index 56df254..e6b0478 100644
--- a/libgfortran/io/unix.c
+++ b/libgfortran/io/unix.c
@@ -984,6 +984,8 @@ tempfile (void)
if (tempdir == NULL)
tempdir = getenv ("TMP");
if (tempdir == NULL)
+ tempdir = getenv ("TEMP");
+ if (tempdir == NULL)
tempdir = DEFAULT_TEMPDIR;
template = get_mem (strlen (tempdir) + 20);
@@ -998,7 +1000,7 @@ tempfile (void)
if (mktemp (template))
do
- fd = open (template, O_RDWR |O_CREAT | O_EXCL, S_IREAD | S_IWRITE);
+ fd = open (template, O_RDWR | O_CREAT | O_EXCL, S_IREAD | S_IWRITE);
while (!(fd == -1 && errno == EEXIST) && mktemp (template));
else
fd = -1;