fixing mac bustage - mac doesn't have int 64s it has a struct for it instead

This commit is contained in:
valeski%netscape.com 1999-09-10 14:53:49 +00:00
Родитель 1032971d5d
Коммит c5ca8a0101
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -78,7 +78,7 @@ typedef enum _FTPentryType {
// indexEntry is the data structure used to maintain directory entry information.
class indexEntry {
public:
indexEntry() { mContentLen = 0; mMDTM = 0; mType = File; mSupressSize = PR_FALSE; };
indexEntry() { mContentLen = 0; mMDTM = PR_Now(); mType = File; mSupressSize = PR_FALSE; };
nsCString mName; // the file or dir name
FTPentryType mType;