Chromium Code Reviews| Index: content/common/ssl_status_serialization.cc |
| diff --git a/content/common/ssl_status_serialization.cc b/content/common/ssl_status_serialization.cc |
| index a105e7ea450fcd953edec497eeb1a87b32eb00c7..1d3d3abc0a7f01055b8e1aaf5089542c1bed0585 100644 |
| --- a/content/common/ssl_status_serialization.cc |
| +++ b/content/common/ssl_status_serialization.cc |
| @@ -31,8 +31,9 @@ bool CheckSecurityStyle(int security_style) { |
| bool CheckSCTStatus(uint32_t sct_status) { |
| switch (sct_status) { |
| case net::ct::SCT_STATUS_LOG_UNKNOWN: |
| - case net::ct::SCT_STATUS_INVALID: |
| + case net::ct::SCT_STATUS_INVALID_SIGNATURE: |
| case net::ct::SCT_STATUS_OK: |
| + case net::ct::SCT_STATUS_INVALID_TIMESTAMP: |
| case net::ct::SCT_STATUS_MAX: |
|
eroman
2016/08/15 19:20:22
Why is MAX considered valid?
From the definition:
Eran Messeri
2016/08/16 14:17:18
(1) MAX shouldn't be considered valid - I've moved
|
| return true; |
| case net::ct::SCT_STATUS_NONE: |