summaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bug1385597
diff options
context:
space:
mode:
Diffstat (limited to 'www/firefox/files/patch-bug1385597')
-rw-r--r--www/firefox/files/patch-bug138559724
1 files changed, 0 insertions, 24 deletions
diff --git a/www/firefox/files/patch-bug1385597 b/www/firefox/files/patch-bug1385597
deleted file mode 100644
index c04746e89449..000000000000
--- a/www/firefox/files/patch-bug1385597
+++ /dev/null
@@ -1,24 +0,0 @@
-Properly restore system timezone on other POSIX systems. r?ehsan
-
---- toolkit/components/resistfingerprinting/nsRFPService.cpp
-+++ toolkit/components/resistfingerprinting/nsRFPService.cpp
-@@ -162,14 +162,14 @@ nsRFPService::UpdatePref()
- PR_SetEnv(tz);
- }
- } else {
--#if defined(XP_LINUX) || defined (XP_MACOSX)
-- // For POSIX like system, we reset the TZ to the /etc/localtime, which is the
-- // system timezone.
-- PR_SetEnv("TZ=:/etc/localtime");
--#else
-+#if defined(XP_WIN)
- // For Windows, we reset the TZ to an empty string. This will make Windows to use
- // its system timezone.
- PR_SetEnv("TZ=");
-+#else
-+ // For POSIX like system, we reset the TZ to the /etc/localtime, which is the
-+ // system timezone.
-+ PR_SetEnv("TZ=:/etc/localtime");
- #endif
- }
- }