| Index: net/ftp/ftp_util.cc
|
| diff --git a/net/ftp/ftp_util.cc b/net/ftp/ftp_util.cc
|
| index 0eab4652c3fb6a903bbb9fbc94aef4c3c93dab82..68307a2b41bafe1628964626ab9742ff720dde49 100644
|
| --- a/net/ftp/ftp_util.cc
|
| +++ b/net/ftp/ftp_util.cc
|
| @@ -107,7 +107,7 @@ std::string FtpUtil::VMSPathToUnix(const std::string& vms_path) {
|
| std::string result(vms_path);
|
| if (vms_path[0] == '[') {
|
| // It's a relative path.
|
| - ReplaceFirstSubstringAfterOffset(&result, 0, "[.", "");
|
| + ReplaceFirstSubstringAfterOffset(&result, 0, "[.", std::string());
|
| } else {
|
| // It's an absolute path.
|
| result.insert(0, "/");
|
|
|