1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-10 13:04:23 +01:00

2002-05-14 Timo Schulz <ts@winpt.org>

* exec.c (make_tempdir) [MINGW32]: Added missing '\'.
This commit is contained in:
Timo Schulz 2002-05-14 09:57:32 +00:00
parent 7ea7c0bc16
commit ab53833530
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-05-14 Timo Schulz <ts@winpt.org>
* exec.c (make_tempdir) [MINGW32]: Added missing '\'.
2002-05-14 Stefan Bellon <sbellon@sbellon.de>
* exec.c (make_tempdir): Make use of EXTSEP_S instead of hardcoded

View File

@ -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);