Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(346)

Unified Diff: net/socket/ssl_host_info.cc

Issue 8342054: net: enable CRL sets behind a command line flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/socket/ssl_host_info.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_host_info.cc
diff --git a/net/socket/ssl_host_info.cc b/net/socket/ssl_host_info.cc
index 5b4b42ddb7d4c076d4bcae18889be224e813489e..d792d43a6c169cb7efe1fb2da2f53bfd11415f14 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());
« no previous file with comments | « net/socket/ssl_host_info.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698