2007-05-12 11:10 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/rtl/hbffind.c
    ! fixed typo in my previous commit
This commit is contained in:
Przemyslaw Czerpak
2007-05-12 09:10:12 +00:00
parent 2b3f5f5384
commit a2aa169e67
2 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-05-12 11:10 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/rtl/hbffind.c
! fixed typo in my previous commit
2007-05-12 10:48 UTC+0100 Antonio Linares (alinares@fivetechsoft.com)
* contrib/adordd/adordd.prg
* OrdCreate() fixed

View File

@@ -696,10 +696,10 @@ static BOOL hb_fsFindNextLow( PHB_FFIND ffind )
* on 32bit machines.
*/
struct stat64 sStat;
if( stat64( dirname, &sStat ) != 0 )
if( stat64( dirname, &sStat ) == 0 )
#else
struct stat sStat;
if( stat( dirname, &sStat ) != 0 )
if( stat( dirname, &sStat ) == 0 )
#endif
{
strncpy( ffind->szName, info->entry->d_name, _POSIX_PATH_MAX );