From 53b3866de141e771b1c38629b4bc583edcc5ea72 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 11 Mar 2000 17:18:14 +0000 Subject: [PATCH] 20000311-17:54 GMT+1 --- harbour/ChangeLog | 4 +++- harbour/source/rtl/dir.c | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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