diff options
| author | dkf <donal.k.fellows@manchester.ac.uk> | 2019-04-30 13:31:59 (GMT) |
|---|---|---|
| committer | dkf <donal.k.fellows@manchester.ac.uk> | 2019-04-30 13:31:59 (GMT) |
| commit | 688e4e85455890e8a7bdf3435bf88206ce97f9ea (patch) | |
| tree | ac9c497b7beb5f39a59c4377fcefaf05d4a193d0 /unix | |
| parent | c0c8a1cbd0b9842eb58c4bad983e58138506306b (diff) | |
| download | tcl-688e4e85455890e8a7bdf3435bf88206ce97f9ea.zip tcl-688e4e85455890e8a7bdf3435bf88206ce97f9ea.tar.gz tcl-688e4e85455890e8a7bdf3435bf88206ce97f9ea.tar.bz2 | |
Windows implementation of TclpCreateTemporaryDirectory
Diffstat (limited to 'unix')
| -rw-r--r-- | unix/tclUnixFCmd.c | 2 |
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. |
