| 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 d73a54f1bb16bd3a6a49634dc89c9fb36008e8b5..fb5ee478b68f703afe1af78d43ae06df1b704722 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_vms.cc
|
| +++ b/net/ftp/ftp_directory_listing_parser_vms.cc
|
| @@ -210,7 +210,7 @@ bool ParseFtpDirectoryListingVms(
|
| if (lines[i].empty())
|
| continue;
|
|
|
| - if (StartsWith(lines[i], base::ASCIIToUTF16("Total of "), true)) {
|
| + if (base::StartsWith(lines[i], base::ASCIIToUTF16("Total of "), true)) {
|
| // After the "total" line, all following lines must be empty.
|
| for (size_t j = i + 1; j < lines.size(); j++)
|
| if (!lines[j].empty())
|
|
|