| 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..f0847bcbcface9487d368c5dec324eedf8558d6c 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_netware.cc
|
| +++ b/net/ftp/ftp_directory_listing_parser_netware.cc
|
| @@ -40,7 +40,8 @@ bool ParseFtpDirectoryListingNetware(
|
| const base::Time& current_time,
|
| std::vector<FtpDirectoryListingEntry>* entries) {
|
| if (!lines.empty() &&
|
| - !StartsWith(lines[0], base::ASCIIToUTF16("total "), true)) {
|
| + !base::StartsWith(lines[0], base::ASCIIToUTF16("total "),
|
| + base::CompareCase::SENSITIVE)) {
|
| return false;
|
| }
|
|
|
|
|