Correcting Unix permissions on directories created from 755 -> 0755.

This commit is contained in:
sgehani%netscape.com 1999-07-14 19:49:50 +00:00
Родитель 19485a29b3
Коммит a41fefc828
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -124,7 +124,7 @@ nsInstallFile::nsInstallFile(nsInstall* inInstall,
/* the nsFileSpecMac.cpp operator += requires "this" (the nsFileSpec)
* to be an existing dir
*/
int dirPermissions = 755; // std default for UNIX, ignored otherwise
int dirPermissions = 0755; // std default for UNIX, ignored otherwise
mFinalFile->CreateDir(dirPermissions);
}