This commit is contained in:
cbiesinger%web.de 2004-04-16 20:10:47 +00:00
Родитель 2a913af4eb
Коммит 0b005761a9
2 изменённых файлов: 1 добавлений и 13 удалений

Просмотреть файл

@ -1063,12 +1063,9 @@ nsLocalFile::GetFileSize(PRInt64 *aFileSize)
}
#endif
/* XXX autoconf for and use stat64 if available */
if (!S_ISDIR(mCachedStat.st_mode)) {
#ifdef STAT_IS_64
*aFileSize = mCachedStat.st_size;
#else
LL_UI2L(*aFileSize, (PRUint32)mCachedStat.st_size);
#endif
}
return NS_OK;
}

Просмотреть файл

@ -65,15 +65,6 @@
#include <sys/mount.h>
#endif
// 64-bit stat
#if defined(HAVE_STAT64) && defined(HAVE_LSTAT64)
# undef stat
# undef lstat
# define stat stat64
# define lstat lstat64
# define STAT_IS_64
#endif
class NS_COM nsLocalFile : public nsILocalFile
{
public: