summarylogtreecommitdiffstats
path: root/rhbz-966424.patch
diff options
context:
space:
mode:
authorBjörn Bidar2018-01-25 06:04:57 +0100
committerBjörn Bidar2018-01-25 06:05:39 +0100
commit2b44aab3846d1441a29921afbd876be9eade4dd3 (patch)
tree885176fba2997d8dcb75d283f685611b7046305c /rhbz-966424.patch
parentd1b2928808060e02455e1fe5870f4f2acb9b2088 (diff)
downloadaur-2b44aab3846d1441a29921afbd876be9eade4dd3.tar.gz
upkg, changed to mach build added patch to revert moving channel-prefs.js
Diffstat (limited to 'rhbz-966424.patch')
-rw-r--r--rhbz-966424.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/rhbz-966424.patch b/rhbz-966424.patch
deleted file mode 100644
index c4c332e9e7ae..000000000000
--- a/rhbz-966424.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/toolkit/modules/CertUtils.jsm
-+++ b/toolkit/modules/CertUtils.jsm
-@@ -170,17 +170,19 @@ this.checkCert =
- issuerCert = issuerCert.QueryInterface(Ci.nsIX509Cert3);
- var tokenNames = issuerCert.getAllTokenNames({});
-
- if (!tokenNames || !tokenNames.some(isBuiltinToken))
- throw new Ce(certNotBuiltInErr, Cr.NS_ERROR_ABORT);
- }
-
- function isBuiltinToken(tokenName) {
-- return tokenName == "Builtin Object Token";
-+ return tokenName == "Builtin Object Token" ||
-+ tokenName == "Default Trust" ||
-+ tokenName == "System Trust";
- }
-
- /**
- * This class implements nsIBadCertListener. Its job is to prevent "bad cert"
- * security dialogs from being shown to the user. It is better to simply fail
- * if the certificate is bad. See bug 304286.
- *
- * @param aAllowNonBuiltInCerts (optional)