openbsd-ports/www/mozilla-firefox/patches/patch-xpcom_io_SpecialSystemDirectory_cpp
landry ad076fd40f Update www/mozilla-firefox from 3.0.19 to 3.6.3, merging the wip done in
www/firefox36 mostly by martynas@ and naddy@.
Note that the java plugin from devel/jdk currently doesn't work with this
version of firefox, in the meantime users really needed it will have to
use www/firefox35.
ok naddy@
2010-04-26 19:55:58 +00:00

13 lines
542 B
Plaintext

$OpenBSD: patch-xpcom_io_SpecialSystemDirectory_cpp,v 1.2 2010/04/26 19:55:58 landry Exp $
--- xpcom/io/SpecialSystemDirectory.cpp.orig Wed Jan 6 05:35:35 2010
+++ xpcom/io/SpecialSystemDirectory.cpp Sun Jan 10 17:47:30 2010
@@ -520,7 +520,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;
}