Changing dir create permissions to 775.

This commit is contained in:
warren%netscape.com 2000-04-16 21:32:29 +00:00
parent 37cc8bf4d2
commit ff5b1f0cbf
2 changed files with 2 additions and 2 deletions

View File

@ -515,7 +515,7 @@ nsJARChannel::GetCacheFile(nsIFile* *cacheFile)
rv = jarCacheFile->Exists(&exists); rv = jarCacheFile->Exists(&exists);
if (NS_FAILED(rv)) return rv; if (NS_FAILED(rv)) return rv;
if (!exists) { if (!exists) {
rv = jarCacheFile->Create(nsIFile::DIRECTORY_TYPE, 0664); rv = jarCacheFile->Create(nsIFile::DIRECTORY_TYPE, 0775);
if (NS_FAILED(rv)) return rv; if (NS_FAILED(rv)) return rv;
} }

View File

@ -515,7 +515,7 @@ nsJARChannel::GetCacheFile(nsIFile* *cacheFile)
rv = jarCacheFile->Exists(&exists); rv = jarCacheFile->Exists(&exists);
if (NS_FAILED(rv)) return rv; if (NS_FAILED(rv)) return rv;
if (!exists) { if (!exists) {
rv = jarCacheFile->Create(nsIFile::DIRECTORY_TYPE, 0664); rv = jarCacheFile->Create(nsIFile::DIRECTORY_TYPE, 0775);
if (NS_FAILED(rv)) return rv; if (NS_FAILED(rv)) return rv;
} }