summaryrefslogtreecommitdiff
path: root/rhbz-1400293-workaround.patch
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2017-04-27 11:49:26 +0200
committerJan Horak <jhorak@redhat.com>2017-04-27 11:49:26 +0200
commit84aecf83e0b356ea51e2c00c83626dc49f8d0ad7 (patch)
tree95b283f3620819f4ce53b6db594744917ba5d254 /rhbz-1400293-workaround.patch
parentEnabled second arches (diff)
downloadlibrewolf-fedora-ff-84aecf83e0b356ea51e2c00c83626dc49f8d0ad7.tar.gz
librewolf-fedora-ff-84aecf83e0b356ea51e2c00c83626dc49f8d0ad7.tar.bz2
librewolf-fedora-ff-84aecf83e0b356ea51e2c00c83626dc49f8d0ad7.zip
Added patch for rhbz#1400293 - kai nss patch which removes workaround patch, for F24 and F25
Diffstat (limited to 'rhbz-1400293-workaround.patch')
-rw-r--r--rhbz-1400293-workaround.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/rhbz-1400293-workaround.patch b/rhbz-1400293-workaround.patch
deleted file mode 100644
index f9cc7c2..0000000
--- a/rhbz-1400293-workaround.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-diff -up ./CertVerifier.cpp.ignoreBuiltinStatus ./CertVerifier.cpp
---- ./security/certverifier/CertVerifier.cpp.ignoreBuiltinStatus 2016-10-31 21:15:28.000000000 +0100
-+++ ./security/certverifier/CertVerifier.cpp 2016-12-16 21:35:32.155105623 +0100
-@@ -65,6 +65,9 @@ InitCertVerifierLog()
- Result
- IsCertChainRootBuiltInRoot(const UniqueCERTCertList& chain, bool& result)
- {
-+ result = false;
-+ return Success;
-+#if 0
- if (!chain || CERT_LIST_EMPTY(chain)) {
- return Result::FATAL_ERROR_LIBRARY_FAILURE;
- }
-@@ -77,12 +80,15 @@ IsCertChainRootBuiltInRoot(const UniqueC
- return Result::FATAL_ERROR_LIBRARY_FAILURE;
- }
- return IsCertBuiltInRoot(root, result);
-+#endif
- }
-
- Result
- IsCertBuiltInRoot(CERTCertificate* cert, bool& result)
- {
- result = false;
-+ return Success;
-+#if 0
- #ifdef DEBUG
- nsCOMPtr<nsINSSComponent> component(do_GetService(PSM_COMPONENT_CONTRACTID));
- if (!component) {
-@@ -114,6 +120,7 @@ IsCertBuiltInRoot(CERTCertificate* cert,
- }
- }
- return Success;
-+#endif
- }
-
- static Result
bgstack15