aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimo Schulz <[email protected]>2002-05-14 09:57:32 +0000
committerTimo Schulz <[email protected]>2002-05-14 09:57:32 +0000
commitab538335304f01ea9b979a91f560f270ef259c46 (patch)
tree6ca689fa505f057021a70d370df89e3366f247e2
parentEXTSEP_S instead of hardcoded dot (diff)
downloadgnupg-ab538335304f01ea9b979a91f560f270ef259c46.tar.gz
gnupg-ab538335304f01ea9b979a91f560f270ef259c46.zip
2002-05-14 Timo Schulz <[email protected]>
* exec.c (make_tempdir) [MINGW32]: Added missing '\'.
-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);