| Index: chrome/browser/ui/website_settings/website_settings.cc
|
| diff --git a/chrome/browser/ui/website_settings/website_settings.cc b/chrome/browser/ui/website_settings/website_settings.cc
|
| index ff46e297c10d2f489e7e5932e3313f37eff8aff9..b634f64148d000faeb4ce4c59bb9c10b359718b5 100644
|
| --- a/chrome/browser/ui/website_settings/website_settings.cc
|
| +++ b/chrome/browser/ui/website_settings/website_settings.cc
|
| @@ -159,8 +159,10 @@ int GetSiteIdentityDetailsMessageByCTInfo(
|
| : IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_CT_VERIFIED);
|
|
|
| // Any invalid SCT.
|
| - if (CertificateTransparencyStatusMatchAny(sct_verify_statuses,
|
| - net::ct::SCT_STATUS_INVALID))
|
| + if (CertificateTransparencyStatusMatchAny(
|
| + sct_verify_statuses, net::ct::SCT_STATUS_INVALID_TIMESTAMP) ||
|
| + CertificateTransparencyStatusMatchAny(
|
| + sct_verify_statuses, net::ct::SCT_STATUS_INVALID_SIGNATURE))
|
| return (is_ev ? IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_EV_CT_INVALID
|
| : IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_CT_INVALID);
|
|
|
|
|