| 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 0fa5f8ff5df8aa0a334e498e0d2af7895840533e..58ba1a0a66c6135e714446a550b1c01d22285672 100644
|
| --- a/chrome/browser/ui/website_settings/website_settings.cc
|
| +++ b/chrome/browser/ui/website_settings/website_settings.cc
|
| @@ -162,8 +162,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_SIGNATURE) ||
|
| + CertificateTransparencyStatusMatchAny(
|
| + sct_verify_statuses, net::ct::SCT_STATUS_INVALID_TIMESTAMP))
|
| return (is_ev ? IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_EV_CT_INVALID
|
| : IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_CT_INVALID);
|
|
|
|
|