summaryrefslogtreecommitdiff
path: root/firefox-fedora-ua.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2019-01-28 14:53:26 +0100
committerMartin Stransky <stransky@redhat.com>2019-01-28 14:53:26 +0100
commiteec2ffa6e4f9ca24edca21392882a65abc3fb15f (patch)
tree903762f553140c0f96ed73541d44022adb066076 /firefox-fedora-ua.patch
parentRebuild (diff)
downloadlibrewolf-fedora-ff-eec2ffa6e4f9ca24edca21392882a65abc3fb15f.tar.gz
librewolf-fedora-ff-eec2ffa6e4f9ca24edca21392882a65abc3fb15f.tar.bz2
librewolf-fedora-ff-eec2ffa6e4f9ca24edca21392882a65abc3fb15f.zip
Update to Firefox 65.0 build 2
Diffstat (limited to 'firefox-fedora-ua.patch')
-rw-r--r--firefox-fedora-ua.patch34
1 files changed, 16 insertions, 18 deletions
diff --git a/firefox-fedora-ua.patch b/firefox-fedora-ua.patch
index a5b7866..7f1f554 100644
--- a/firefox-fedora-ua.patch
+++ b/firefox-fedora-ua.patch
@@ -1,21 +1,19 @@
-diff -up firefox-35.0.1/mozilla-release/media/webrtc/trunk/Makefile.old firefox-35.0.1/mozilla-release/media/webrtc/trunk/Makefile
-diff -up firefox-35.0.1/mozilla-release/netwerk/protocol/http/nsHttpHandler.cpp.old firefox-35.0.1/mozilla-release/netwerk/protocol/http/nsHttpHandler.cpp
---- firefox-35.0.1/mozilla-release/netwerk/protocol/http/nsHttpHandler.cpp.old 2015-01-23 07:00:06.000000000 +0100
-+++ firefox-35.0.1/mozilla-release/netwerk/protocol/http/nsHttpHandler.cpp 2015-02-09 16:40:42.983220596 +0100
-@@ -607,7 +607,7 @@ nsHttpHandler::BuildUserAgent()
- mUserAgent.SetCapacity(mLegacyAppName.Length() +
- mLegacyAppVersion.Length() +
+diff -up firefox-65.0/netwerk/protocol/http/nsHttpHandler.cpp.fedora-ua firefox-65.0/netwerk/protocol/http/nsHttpHandler.cpp
+--- firefox-65.0/netwerk/protocol/http/nsHttpHandler.cpp.fedora-ua 2019-01-28 14:28:35.806375063 +0100
++++ firefox-65.0/netwerk/protocol/http/nsHttpHandler.cpp 2019-01-28 14:30:25.886917219 +0100
+@@ -873,6 +873,7 @@ void nsHttpHandler::BuildUserAgent() {
+ mUserAgent.SetCapacity(mLegacyAppName.Length() + mLegacyAppVersion.Length() +
#ifndef UA_SPARE_PLATFORM
-- mPlatform.Length() +
-+ mPlatform.Length() + 8 +
+ mPlatform.Length() +
++ mPlatform.Length() + 8 +
#endif
- mOscpu.Length() +
- mMisc.Length() +
-@@ -631,6 +631,7 @@ nsHttpHandler::BuildUserAgent()
- if (!mPlatform.IsEmpty()) {
- mUserAgent += mPlatform;
- mUserAgent.AppendLiteral("; ");
-+ mUserAgent.AppendLiteral("Fedora; ");
- }
+ mOscpu.Length() + mMisc.Length() + mProduct.Length() +
+ mProductSub.Length() + mAppName.Length() +
+@@ -891,6 +892,7 @@ void nsHttpHandler::BuildUserAgent() {
+ if (!mPlatform.IsEmpty()) {
+ mUserAgent += mPlatform;
+ mUserAgent.AppendLiteral("; ");
++ mUserAgent.AppendLiteral("Fedora; ");
+ }
#endif
- if (!mCompatDevice.IsEmpty()) {
+ if (!mCompatDevice.IsEmpty()) {
bgstack15