summaryrefslogtreecommitdiffstats
path: root/net/socket/ssl_host_info.cc
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-25 16:12:46 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-25 16:12:46 +0000
commit88c6271c0567be4ae41400460ca0f3c0855bd0a5 (patch)
treea766ca92f9efc3914f8d6bb33717ea2ecec7b4b5 /net/socket/ssl_host_info.cc
parent4e2e2e2a8f5a75d2795b96ce7b1d8de677634611 (diff)
downloadchromium_src-88c6271c0567be4ae41400460ca0f3c0855bd0a5.zip
chromium_src-88c6271c0567be4ae41400460ca0f3c0855bd0a5.tar.gz
chromium_src-88c6271c0567be4ae41400460ca0f3c0855bd0a5.tar.bz2
net: enable CRL sets behind a command line flag.
This change introduces a command line flag for enabling CRL sets while the serving side is still in development. It contains code for NSS (revocation checking will proceed as normal on other platforms). BUG=none TEST=none Review URL: http://codereview.chromium.org/8342054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107131 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/socket/ssl_host_info.cc')
-rw-r--r--net/socket/ssl_host_info.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/socket/ssl_host_info.cc b/net/socket/ssl_host_info.cc
index 5b4b42dd..d792d43a 100644
--- a/net/socket/ssl_host_info.cc
+++ b/net/socket/ssl_host_info.cc
@@ -128,7 +128,7 @@ bool SSLHostInfo::ParseInner(const std::string& data) {
verification_start_time_ = base::TimeTicks::Now();
verification_end_time_ = base::TimeTicks();
int rv = verifier_.Verify(
- cert_.get(), hostname_, flags, &cert_verify_result_,
+ cert_.get(), hostname_, flags, crl_set_, &cert_verify_result_,
base::Bind(&SSLHostInfo::VerifyCallback, weak_factory_.GetWeakPtr()),
// TODO(willchan): Figure out how to use NetLog here.
BoundNetLog());