| Index: chrome/common/logging_chrome.cc
|
| diff --git a/chrome/common/logging_chrome.cc b/chrome/common/logging_chrome.cc
|
| index 10795caf8bb1e07ebe8b04027a17b77b86d62142..f546e35fc441702ab04aac53e4d291a5a39cbe94 100644
|
| --- a/chrome/common/logging_chrome.cc
|
| +++ b/chrome/common/logging_chrome.cc
|
| @@ -249,7 +249,7 @@ void CleanupChromeLogging() {
|
| FilePath GetLogFileName() {
|
| std::string filename;
|
| scoped_ptr<base::Environment> env(base::Environment::Create());
|
| - if (env->GetEnv(env_vars::kLogFileName, &filename) && !filename.empty()) {
|
| + if (env->GetVar(env_vars::kLogFileName, &filename) && !filename.empty()) {
|
| #if defined(OS_WIN)
|
| return FilePath(UTF8ToWide(filename).c_str());
|
| #elif defined(OS_POSIX)
|
|
|