From 77a838a217fdbc57f1727b082a2578ebc35d2e1c Mon Sep 17 00:00:00 2001 From: Patrick Sapinski Date: Mon, 23 Aug 2010 01:32:03 -0400 Subject: re-enabled grid specific user settings dirs --- linden/indra/llvfs/lldir.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'linden/indra') diff --git a/linden/indra/llvfs/lldir.cpp b/linden/indra/llvfs/lldir.cpp index 29a3771..e4df977 100644 --- a/linden/indra/llvfs/lldir.cpp +++ b/linden/indra/llvfs/lldir.cpp @@ -542,16 +542,16 @@ void LLDir::setLindenUserDir(const std::string &grid, const std::string &first, { // some platforms have case-sensitive filesystems, so be // utterly consistent with our firstname/lastname case. - // std::string gridlower(grid); - // LLStringUtil::toLower(gridlower); + std::string gridlower(grid); + LLStringUtil::toLower(gridlower); std::string firstlower(first); LLStringUtil::toLower(firstlower); std::string lastlower(last); LLStringUtil::toLower(lastlower); mLindenUserDir = getOSUserAppDir(); mLindenUserDir += mDirDelimiter; - // mLindenUserDir += gridlower; - // mLindenUserDir += "-"; + mLindenUserDir += gridlower; + mLindenUserDir += "-"; mLindenUserDir += firstlower; mLindenUserDir += "_"; mLindenUserDir += lastlower; @@ -583,16 +583,16 @@ void LLDir::setPerAccountChatLogsDir(const std::string &grid, const std::string { // some platforms have case-sensitive filesystems, so be // utterly consistent with our firstname/lastname case. - // std::string gridlower(grid); - // LLStringUtil::toLower(gridlower); + std::string gridlower(grid); + LLStringUtil::toLower(gridlower); std::string firstlower(first); LLStringUtil::toLower(firstlower); std::string lastlower(last); LLStringUtil::toLower(lastlower); mPerAccountChatLogsDir = getChatLogsDir(); mPerAccountChatLogsDir += mDirDelimiter; - // mPerAccountChatLogsDir += gridlower; - // mPerAccountChatLogsDir += "-"; + mPerAccountChatLogsDir += gridlower; + mPerAccountChatLogsDir += "-"; mPerAccountChatLogsDir += firstlower; mPerAccountChatLogsDir += "_"; mPerAccountChatLogsDir += lastlower; -- cgit v1.1