openbsd-ports/www/mozilla-firefox/patches/patch-xpcom_io_SpecialSystemDirectory_cpp
landry 433f3c4b5e Update to mozilla-firefox 5.0:
That's the first release following the new fast scheme of one major
release every 6 weeks..
Check out http://www.mozilla.com/en-US/firefox/5.0/releasenotes/ for
release notes. Note that it's still badly broken on sparc64, and
unlikely to be fixed soon... you still have www/firefox36.

Tested by (at least, probably forgetting some..) rpointel@, pea@,
ckuethe@ and myself on amd64, bluhm@ on i386 and ajacoutot@ on macppc
(thanks!)
ok rpointel@
2011-06-28 05:43:57 +00:00

13 lines
542 B
Plaintext

$OpenBSD: patch-xpcom_io_SpecialSystemDirectory_cpp,v 1.4 2011/06/28 05:43:57 landry Exp $
--- xpcom/io/SpecialSystemDirectory.cpp.orig Fri May 27 18:12:59 2011
+++ xpcom/io/SpecialSystemDirectory.cpp Tue May 31 22:18:41 2011
@@ -485,7 +485,7 @@ GetUnixXDGUserDirectory(SystemDirectories aSystemDirec
if (NS_FAILED(rv))
return rv;
if (!exists) {
- rv = file->Create(nsIFile::DIRECTORY_TYPE, 0755);
+ rv = file->Create(nsIFile::DIRECTORY_TYPE, 0700);
if (NS_FAILED(rv))
return rv;
}