| Index: net/ftp/ftp_directory_listing_parser_ls.cc
|
| diff --git a/net/ftp/ftp_directory_listing_parser_ls.cc b/net/ftp/ftp_directory_listing_parser_ls.cc
|
| index 9d1b7116758fa077d945b1af332e4002bc519573..1737ebab18b3336b668374a74650bb9bf03a6577 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_ls.cc
|
| +++ b/net/ftp/ftp_directory_listing_parser_ls.cc
|
| @@ -52,8 +52,8 @@ bool TwoColumnDateListingToTime(const base::string16& date,
|
| if (!time_exploded.HasValidValues())
|
| return false;
|
|
|
| - // We don't know the time zone of the server, so just use local time.
|
| - *result = base::Time::FromLocalExploded(time_exploded);
|
| + // We don't know the time zone of the server, so just use UTC.
|
| + *result = base::Time::FromUTCExploded(time_exploded);
|
| return true;
|
| }
|
|
|
|
|