From c103d47925bf5b213c470859cc19c238fefc1e63 Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 9 Oct 2007 04:32:22 +0000 Subject: [PATCH] remove bogus special case --- panda/src/downloader/httpChannel.cxx | 9 --------- 1 file changed, 9 deletions(-) diff --git a/panda/src/downloader/httpChannel.cxx b/panda/src/downloader/httpChannel.cxx index ab9907bb09..e3dd762f9e 100644 --- a/panda/src/downloader/httpChannel.cxx +++ b/panda/src/downloader/httpChannel.cxx @@ -1530,15 +1530,6 @@ run_ssl_handshake() { return false; } - } else if (verify_result == X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN) { - downloader_cat.info() - << "Self-signed certificate in chain from " << _request.get_url().get_server_and_port() << "\n"; - // This doesn't appear to be an actual validation error. I guess. - // It's only an error if we don't recognize the root authority. - // There appear to be some legitimate certs (e.g. from starfield - // tech) that trigger this error, even though they appear to have - // a fully-authorized chain up to the root. - } else if (verify_result != X509_V_OK) { downloader_cat.info() << "Unable to verify identity of " << _request.get_url().get_server_and_port()