diff --git a/harbour/ChangeLog b/harbour/ChangeLog index b535e37746..ea34356785 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,13 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ +2006-08-04 15:24 UTC+0100 Viktor Szakats (viktor.szakats syenar.hu) + * harbour/include/hbundoc.api + + Added _tctemp() undocumented call. + + * harbour/source/rtl/fserror.c + ! Fixed trace message. + 2006-07-28 14:02 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbsetup.h * updated PCODE version number due to recent modifications diff --git a/harbour/include/hbundoc.api b/harbour/include/hbundoc.api index dd6da539af..bd0c268272 100644 --- a/harbour/include/hbundoc.api +++ b/harbour/include/hbundoc.api @@ -93,6 +93,7 @@ #define _tread hb_fsRead #define _trename hb_fsRename #define _trmdir hb_fsRmDir +#define _tctemp(p,a,b) hb_fsCreateTemp( p, "", a, b ) #define _tunlink hb_fsDelete #define _twrite hb_fsWrite diff --git a/harbour/source/rtl/fserror.c b/harbour/source/rtl/fserror.c index 2f3f1dd93d..c1466d19ac 100644 --- a/harbour/source/rtl/fserror.c +++ b/harbour/source/rtl/fserror.c @@ -185,7 +185,7 @@ HB_EXPORT USHORT hb_fsError( void ) /* return real error code of last operation */ HB_EXPORT USHORT hb_fsOsError( void ) { - HB_TRACE(HB_TR_DEBUG, ("hb_fsError()")); + HB_TRACE(HB_TR_DEBUG, ("hb_fsOsError()")); return s_uiOsErrorLast; }