| Index: net/ftp/ftp_network_transaction.cc
|
| diff --git a/net/ftp/ftp_network_transaction.cc b/net/ftp/ftp_network_transaction.cc
|
| index 3455fc6d7dfe2d400fba94303174308ff14ac95c..7820715647585e86d4052363d870bc26c8b3a28c 100644
|
| --- a/net/ftp/ftp_network_transaction.cc
|
| +++ b/net/ftp/ftp_network_transaction.cc
|
| @@ -152,7 +152,7 @@ bool ExtractPortFromPASVResponse(const net::FtpCtrlResponse& response,
|
| return false;
|
|
|
| std::string line(response.lines[0]);
|
| - if (!IsStringASCII(line))
|
| + if (!base::IsStringASCII(line))
|
| return false;
|
| if (line.length() < 2)
|
| return false;
|
| @@ -830,7 +830,7 @@ int FtpNetworkTransaction::ProcessResponseSYST(
|
| // The response should be ASCII, which allows us to do case-insensitive
|
| // comparisons easily. If it is not ASCII, we leave the system type
|
| // as unknown.
|
| - if (IsStringASCII(line)) {
|
| + if (base::IsStringASCII(line)) {
|
| line = StringToLowerASCII(line);
|
|
|
| // Remove all whitespace, to correctly handle cases like fancy "V M S"
|
|
|