summaryrefslogtreecommitdiff
path: root/libre/iceape/rhbz-966424.patch
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2019-03-04 21:05:14 +0100
committerAndreas Grapentin <andreas@grapentin.org>2019-03-04 21:06:52 +0100
commit8d7a9daf1038cdefd25aa3224b4a742d696ca94b (patch)
tree143f6494f2f0cc4ab6cfd0199d904a140a81d6a0 /libre/iceape/rhbz-966424.patch
parentcbf062a36ec75d8a11b53244da5a3a2b0af98571 (diff)
downloadabslibre-8d7a9daf1038cdefd25aa3224b4a742d696ca94b.tar.gz
abslibre-8d7a9daf1038cdefd25aa3224b4a742d696ca94b.tar.bz2
abslibre-8d7a9daf1038cdefd25aa3224b4a742d696ca94b.zip
libre/iceape: updated to 2.49.4
Diffstat (limited to 'libre/iceape/rhbz-966424.patch')
-rw-r--r--libre/iceape/rhbz-966424.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/libre/iceape/rhbz-966424.patch b/libre/iceape/rhbz-966424.patch
deleted file mode 100644
index c4c332e9e..000000000
--- a/libre/iceape/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)