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

Unified Diff: net/cert/cert_verify_result.cc

Issue 2176413002: Enable Expect-Staple in SSLClientSocket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Expect-Staple on release builds Created 4 years, 5 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 | « no previous file | net/cert/ocsp_verify_result.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/cert_verify_result.cc
diff --git a/net/cert/cert_verify_result.cc b/net/cert/cert_verify_result.cc
index b09ce71f2c4963d71fb34282b95a69cbae5b04ce..b1054e4ced34e81ce1c1906d8dbcb9ebade27c44 100644
--- a/net/cert/cert_verify_result.cc
+++ b/net/cert/cert_verify_result.cc
@@ -40,12 +40,12 @@ bool CertVerifyResult::operator==(const CertVerifyResult& other) const {
std::tie(cert_status, has_md2, has_md4, has_md5, has_sha1,
has_sha1_leaf, public_key_hashes, is_issued_by_known_root,
is_issued_by_additional_trust_anchor,
- common_name_fallback_used) ==
+ common_name_fallback_used, ocsp_result) ==
std::tie(other.cert_status, other.has_md2, other.has_md4,
other.has_md5, other.has_sha1, other.has_sha1_leaf,
other.public_key_hashes, other.is_issued_by_known_root,
other.is_issued_by_additional_trust_anchor,
- other.common_name_fallback_used);
+ other.common_name_fallback_used, other.ocsp_result);
}
} // namespace net
« no previous file with comments | « no previous file | net/cert/ocsp_verify_result.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698