diff options
author | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-19 20:06:10 +0000 |
---|---|---|
committer | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-19 20:06:10 +0000 |
commit | af72fdcb104ef51e9beb0e82db009dc8280e9a99 (patch) | |
tree | 50fc687f6d64c98cd7f09133057a480f125f8db6 /net/http/http_network_transaction.cc | |
parent | 925d400db588d8650d5c3e085a581a7be4326fbd (diff) | |
download | chromium_src-af72fdcb104ef51e9beb0e82db009dc8280e9a99.zip chromium_src-af72fdcb104ef51e9beb0e82db009dc8280e9a99.tar.gz chromium_src-af72fdcb104ef51e9beb0e82db009dc8280e9a99.tar.bz2 |
Revert 89489 - net: don't check revocation when fetching PAC files.
If a PAC file is configured on an HTTPS URL we get into trouble. In order to
check revocation we need to make an HTTP request to the OCSP/CRL server, which
needs the PAC script to load and so we deadlock.
With this change we don't check revocation for PAC fetches.
BUG=86219
TEST=Configure a PAC script on HTTPS.
Review URL: http://codereview.chromium.org/7170026
TBR=agl@chromium.org
NOTE: I'll roll this back in if it turns out unrelated to the ProxyEvents failure.
Review URL: http://codereview.chromium.org/7204023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89628 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_network_transaction.cc')
-rw-r--r-- | net/http/http_network_transaction.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc index 8b06a3b..9054346 100644 --- a/net/http/http_network_transaction.cc +++ b/net/http/http_network_transaction.cc @@ -162,9 +162,6 @@ int HttpNetworkTransaction::Start(const HttpRequestInfo* request_info, request_ = request_info; start_time_ = base::Time::Now(); - if (request_->load_flags & LOAD_DISABLE_CERT_REVOCATION_CHECKING) - ssl_config_.rev_checking_enabled = false; - next_state_ = STATE_CREATE_STREAM; int rv = DoLoop(OK); if (rv == ERR_IO_PENDING) |