aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--g10/ChangeLog4
-rw-r--r--g10/exec.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog
index a99febc24..0e432c146 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,7 @@
+2002-05-14 Timo Schulz <[email protected]>
+
+ * exec.c (make_tempdir) [MINGW32]: Added missing '\'.
+
2002-05-14 Stefan Bellon <[email protected]>
* exec.c (make_tempdir): Make use of EXTSEP_S instead of hardcoded
diff --git a/g10/exec.c b/g10/exec.c
index 144a255d8..7afd3eada 100644
--- a/g10/exec.c
+++ b/g10/exec.c
@@ -73,7 +73,7 @@ static int make_tempdir(struct exec_info *info)
#if defined (__MINGW32__) || defined (__CYGWIN32__)
tmp=m_alloc(256);
if(GetTempPath(256,tmp)==0)
- strcpy(tmp,"c:\\windows\temp");
+ strcpy(tmp,"c:\\windows\\temp");
else
{
int len=strlen(tmp);