summaryrefslogtreecommitdiff
path: root/indra/llvfs
diff options
context:
space:
mode:
authorRoxie Linden <roxie@lindenlab.com>2010-03-08 15:10:27 -0800
committerRoxie Linden <roxie@lindenlab.com>2010-03-08 15:10:27 -0800
commit8bd5a3bca38b0ba663d3563029e54da057020424 (patch)
treed7210ffa432a0d37ef8cb9b9bda91d6c41248172 /indra/llvfs
parent836ab95d90298092dd845f47b5ac51817d7bb665 (diff)
DEV-45976 Last Login Location Preference not remembered
Diffstat (limited to 'indra/llvfs')
-rw-r--r--indra/llvfs/lldir.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/indra/llvfs/lldir.cpp b/indra/llvfs/lldir.cpp
index 1f0c4fe13a..b4ee42ef3a 100644
--- a/indra/llvfs/lldir.cpp
+++ b/indra/llvfs/lldir.cpp
@@ -459,7 +459,6 @@ std::string LLDir::getExpandedFilename(ELLPath location, const std::string& subd
}
//llinfos << "*** EXPANDED FILENAME: <" << expanded_filename << ">" << llendl;
-
return expanded_filename;
}
@@ -609,9 +608,9 @@ void LLDir::setPerAccountChatLogsDir(const std::string &username)
std::string userlower(username);
LLStringUtil::toLower(userlower);
LLStringUtil::replaceChar(userlower, ' ', '_');
- mLindenUserDir = getChatLogsDir();
- mLindenUserDir += mDirDelimiter;
- mLindenUserDir += userlower;
+ mPerAccountChatLogsDir = getChatLogsDir();
+ mPerAccountChatLogsDir += mDirDelimiter;
+ mPerAccountChatLogsDir += userlower;
}
else
{