Chromium Code Reviews| Index: net/ftp/ftp_directory_listing_parser_vms.cc |
| diff --git a/net/ftp/ftp_directory_listing_parser_vms.cc b/net/ftp/ftp_directory_listing_parser_vms.cc |
| index 1a4e4360dcb438f82d428f6cf4b7f6da05c04db7..993a0dfe3de95f11ba1e0bc3f6b9eadc6f3b7341 100644 |
| --- a/net/ftp/ftp_directory_listing_parser_vms.cc |
| +++ b/net/ftp/ftp_directory_listing_parser_vms.cc |
| @@ -192,9 +192,8 @@ bool VmsDateListingToTime(const std::vector<base::string16>& columns, |
| if (!base::StringToInt(time_parts[1], &time_exploded.minute)) |
| return false; |
| - // We don't know the time zone of the server, so just use UTC. |
| - *time = base::Time::FromUTCExploded(time_exploded); |
| - return true; |
| + // We don't know the time zone of the server, so just use local UTC. |
|
eroman
2016/12/19 22:42:35
Please undo this comment change.
maksims (do not use this acc)
2016/12/20 12:32:49
Done.
|
| + return base::Time::FromUTCExploded(time_exploded, time); |
| } |
| } // namespace |