summaryrefslogtreecommitdiff
path: root/codemaker
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2002-06-24 14:28:47 +0000
committerJörg Budischewski <jbu@openoffice.org>2002-06-24 14:28:47 +0000
commitf25fa80836284f8db2ea2a02da3137f976e39f1f (patch)
tree41f20a2718b5f2a12de14be844a014a85646c75f /codemaker
parentcc5eaed3124acd9797839185075e56136075e1ba (diff)
#99601# multiple tempfiles now work under unix, problem with temporary file name creation fixed
Diffstat (limited to 'codemaker')
-rw-r--r--codemaker/source/codemaker/global.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/codemaker/source/codemaker/global.cxx b/codemaker/source/codemaker/global.cxx
index b82d6e25271d..d437516e1c0e 100644
--- a/codemaker/source/codemaker/global.cxx
+++ b/codemaker/source/codemaker/global.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: global.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: hr $ $Date: 2002-02-21 11:31:21 $
+ * last change: $Author: jbu $ $Date: 2002-06-24 15:28:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -147,7 +147,7 @@ OString makeTempName(sal_Char* prefix)
#endif
#ifdef SAL_UNX
- strcat(tmpPattern, "\\");
+ strcat(tmpPattern, "/");
strcat(tmpPattern, pPrefix);
strcat(tmpPattern, "XXXXXX");
#ifdef FREEBSD