diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a9be9c7969..cada2bce35 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2003-02-10 16:00 UTC-0500 David G. Holm + * source/rtl/filesys.c + ! I missed one place where the X__WIN32__ guard needs to be used + (in the hb_fsRename function). + 2003-02-05 23:45 UTC-0500 David G. Holm * contrib/libct/makefile.bc ! Added a rule to compile setlast.prg diff --git a/harbour/source/rtl/filesys.c b/harbour/source/rtl/filesys.c index 78e8761345..1f1dc9ba8a 100644 --- a/harbour/source/rtl/filesys.c +++ b/harbour/source/rtl/filesys.c @@ -1254,7 +1254,7 @@ BOOL hb_fsRename( BYTE * pOldName, BYTE * pNewName ) HB_TRACE(HB_TR_DEBUG, ("hb_fsRename(%s, %s)", (char*) pOldName, (char*) pNewName)); -#if defined(HB_OS_WIN_32) +#if defined(X__WIN32__) errno=0; if ((bResult = MoveFile( ( char * ) pOldName, ( char * ) pNewName ))==0)