summaryrefslogtreecommitdiff
path: root/www/chromium-uc/patches/core/ungoogled-chromium/fix-learn-doubleclick-hsts.patch
diff options
context:
space:
mode:
Diffstat (limited to 'www/chromium-uc/patches/core/ungoogled-chromium/fix-learn-doubleclick-hsts.patch')
-rw-r--r--www/chromium-uc/patches/core/ungoogled-chromium/fix-learn-doubleclick-hsts.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/www/chromium-uc/patches/core/ungoogled-chromium/fix-learn-doubleclick-hsts.patch b/www/chromium-uc/patches/core/ungoogled-chromium/fix-learn-doubleclick-hsts.patch
deleted file mode 100644
index 74d5b79..0000000
--- a/www/chromium-uc/patches/core/ungoogled-chromium/fix-learn-doubleclick-hsts.patch
+++ /dev/null
@@ -1,13 +0,0 @@
1# Split up the learn.doubleclick.net string literal to prevent domain substitution breaking compilation due to the use of the excluded HSTS list json file in this code.
2
3--- net/tools/transport_security_state_generator/transport_security_state_generator.cc.orig
4+++ net/tools/transport_security_state_generator/transport_security_state_generator.cc
5@@ -125,7 +125,7 @@ bool CheckDuplicateEntries(const Transpo
6 bool CheckNoopEntries(const TransportSecurityStateEntries& entries) {
7 for (const auto& entry : entries) {
8 if (!entry->force_https && entry->pinset.empty() && !entry->expect_ct) {
9- if (entry->hostname == "learn.doubleclick.net") {
10+ if (entry->hostname == "learn.double" "click." "net") {
11 // This entry is deliberately used as an exclusion.
12 continue;
13 }