| Index: net/ftp/ftp_directory_listing_parser_netware.cc
|
| diff --git a/net/ftp/ftp_directory_listing_parser_netware.cc b/net/ftp/ftp_directory_listing_parser_netware.cc
|
| index 20716ab9d649dae9d166cf350dd9bf9431123c85..f65e75410141204880244cc04d173648bceac309 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_netware.cc
|
| +++ b/net/ftp/ftp_directory_listing_parser_netware.cc
|
| @@ -40,7 +40,7 @@ bool ParseFtpDirectoryListingNetware(
|
| const base::Time& current_time,
|
| std::vector<FtpDirectoryListingEntry>* entries) {
|
| if (!lines.empty() &&
|
| - !StartsWith(lines[0], base::ASCIIToUTF16("total "), true)) {
|
| + !StartsWith(lines[0], base::ASCIIToUTF16("total "), true)) {
|
| return false;
|
| }
|
|
|
| @@ -80,8 +80,11 @@ bool ParseFtpDirectoryListingNetware(
|
| entry.size = -1;
|
|
|
| // Netware uses the same date listing format as Unix "ls -l".
|
| - if (!FtpUtil::LsDateListingToTime(columns[4], columns[5], columns[6],
|
| - current_time, &entry.last_modified)) {
|
| + if (!FtpUtil::LsDateListingToTime(columns[4],
|
| + columns[5],
|
| + columns[6],
|
| + current_time,
|
| + &entry.last_modified)) {
|
| return false;
|
| }
|
|
|
|
|