diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ed45a657bd..7f1a7c0b6c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -5,7 +5,7 @@ include/Makefile source/rtl/console.c source/rtl/gtapi.c - * Two header files merged to the mainstream GT header. + * Two header files merged into the mainstream GT header. ! B_* box #defines renamed to _B_* to be CA-Cl*pper compatible. * include/hbapigt.h source/rtl/gt/*.c @@ -26,6 +26,8 @@ ! RESTSCREEM() fixed to check the fifth parameter, like in CA-Cl*pper. * source/rtl/console.c % hb_gtSetPos() small optim. + * source/rtl/dir.c + ! chmod() changed back to _rtl_chmod(). 20000311-19:16 GMT+3 Alexander Kresin + contrib/rdd_ads/make_vc.bat diff --git a/harbour/source/rtl/dir.c b/harbour/source/rtl/dir.c index 7134b7ecea..01363d95c3 100644 --- a/harbour/source/rtl/dir.c +++ b/harbour/source/rtl/dir.c @@ -620,7 +620,7 @@ HARBOUR HB_DIRECTORY( void ) strcpy( filename, ++pos ); } #elif defined(__BORLANDC__) - attrib = chmod( fullfile, 0 ); + attrib = _rtl_chmod( fullfile, 0 ); #elif defined(__DJGPP__) attrib = _chmod( fullfile, 0 ); #else