diff options
author | Timo Schulz <[email protected]> | 2002-05-14 09:57:32 +0000 |
---|---|---|
committer | Timo Schulz <[email protected]> | 2002-05-14 09:57:32 +0000 |
commit | ab538335304f01ea9b979a91f560f270ef259c46 (patch) | |
tree | 6ca689fa505f057021a70d370df89e3366f247e2 | |
parent | EXTSEP_S instead of hardcoded dot (diff) | |
download | gnupg-ab538335304f01ea9b979a91f560f270ef259c46.tar.gz gnupg-ab538335304f01ea9b979a91f560f270ef259c46.zip |
2002-05-14 Timo Schulz <[email protected]>
* exec.c (make_tempdir) [MINGW32]: Added missing '\'.
-rw-r--r-- | g10/ChangeLog | 4 | ||||
-rw-r--r-- | g10/exec.c | 2 |
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); |