| 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
|
|
|