Set sane directory permissions on creation. Partial fix for 43091. r=dougt

git-svn-id: svn://10.0.0.236/trunk@75608 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
syd%netscape.com
2000-08-04 22:13:10 +00:00
parent 0b79e56e49
commit d0df16da36
2 changed files with 2 additions and 2 deletions

View File

@@ -87,7 +87,7 @@ void nsFileSpecHelpers::Canonify(nsSimpleCharString& ioPath, PRBool inMakeDirs)
return;
if (inMakeDirs)
{
const mode_t mode = 0700;
const mode_t mode = 0755;
nsFileSpecHelpers::MakeAllDirectories((const char*)ioPath, mode);
}