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

Unified Diff: net/socket/ssl_client_socket_impl.cc

Issue 2400183002: Cleanup: More accurate output parameter type for CTVerifier (Closed)
Patch Set: Created 4 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
Index: net/socket/ssl_client_socket_impl.cc
diff --git a/net/socket/ssl_client_socket_impl.cc b/net/socket/ssl_client_socket_impl.cc
index 49a53d42b1e470572d6efc37c04674fa439fbf35..d5533c005b9236c437fbb0dca9fa76ff63ea2aef 100644
--- a/net/socket/ssl_client_socket_impl.cc
+++ b/net/socket/ssl_client_socket_impl.cc
@@ -1766,7 +1766,7 @@ int SSLClientSocketImpl::VerifyCT() {
// external communication.
cert_transparency_verifier_->Verify(
server_cert_verify_result_.verified_cert.get(), ocsp_response_, sct_list,
- &ct_verify_result_, net_log_);
+ &(ct_verify_result_.scts), net_log_);
Ryan Sleevi 2016/10/07 14:05:29 I don't believe these are necessary?
Eran Messeri 2016/10/10 13:14:09 Done.
ct_verify_result_.ct_policies_applied = true;
ct_verify_result_.ev_policy_compliance =

Powered by Google App Engine
This is Rietveld 408576698