2010-03-02 16:40 UTC+0100 Maurilio Longo (maurilio.longo@libero.it)

* src/rtl/filesys.c
     * hb_fsCurDirBuff() convert '/' to '\' for OS/2
This commit is contained in:
Maurilio Longo
2010-03-02 15:42:01 +00:00
parent e6f389e837
commit 2a1c9afb2c
2 changed files with 5 additions and 1 deletions

View File

@@ -18,6 +18,10 @@
*/
2010-03-02 16:40 UTC+0100 Maurilio Longo (maurilio.longo@libero.it)
* src/rtl/filesys.c
* hb_fsCurDirBuff() convert '/' to '\' for OS/2
2010-03-02 16:15 UTC+0100 Maurilio Longo (maurilio.longo@libero.it)
* src/common/hbffind.c
* hb_fsFindNextLow() to work reliably in my environment needs

View File

@@ -2817,7 +2817,7 @@ HB_ERRCODE hb_fsCurDirBuff( int iDrive, char * pszBuffer, HB_SIZE ulSize )
/* NOTE: A trailing underscore is not returned on this platform,
so we don't need to strip it. [vszakats] */
#if defined( __DJGPP__ )
#if defined( __DJGPP__ ) || defined( HB_OS_OS2 )
/* convert '/' to '\' */
while( ( pszStart = strchr( pszBuffer, '/' ) ) != NULL )
*pszStart = '\\';