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:
@@ -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
|
||||
|
||||
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user