summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2019-04-30 13:31:59 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2019-04-30 13:31:59 (GMT)
commit688e4e85455890e8a7bdf3435bf88206ce97f9ea (patch)
treeac9c497b7beb5f39a59c4377fcefaf05d4a193d0 /unix
parentc0c8a1cbd0b9842eb58c4bad983e58138506306b (diff)
downloadtcl-688e4e85455890e8a7bdf3435bf88206ce97f9ea.zip
tcl-688e4e85455890e8a7bdf3435bf88206ce97f9ea.tar.gz
tcl-688e4e85455890e8a7bdf3435bf88206ce97f9ea.tar.bz2
Windows implementation of TclpCreateTemporaryDirectory
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixFCmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c
index 0089d91..80e7ed0 100644
--- a/unix/tclUnixFCmd.c
+++ b/unix/tclUnixFCmd.c
@@ -2330,7 +2330,7 @@ TclpCreateTemporaryDirectory(
TclDStringAppendLiteral(&template, DEFAULT_TEMP_DIR_PREFIX);
}
- TclDStringAppendLiteral(&template, ".XXXXXX");
+ TclDStringAppendLiteral(&template, "_XXXXXX");
/*
* Make the temporary directory.