change existence test to allow mail folders > 2GB, sr=mscott 361730

This commit is contained in:
bienvenu%nventure.com 2006-11-28 00:19:20 +00:00
Родитель ee85b33908
Коммит ad1af2ce32
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -158,8 +158,7 @@ char* nsFileSpec::GetLeafName() const
PRBool nsFileSpec::Exists() const
//----------------------------------------------------------------------------------------
{
struct stat st;
return !mPath.IsEmpty() && 0 == stat(mPath, &st);
return !mPath.IsEmpty() && 0 == access(mPath, F_OK);
} // nsFileSpec::Exists
//----------------------------------------------------------------------------------------