aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llvfs/lldir.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2009-09-25 03:19:52 -0500
committerJacek Antonelli2009-09-25 04:02:11 -0500
commitf8a9fa67650d1b77c0e88a5287d8259fd2829412 (patch)
treefb9f9873817a5030593b22ff0a990aaeb36cf6c3 /linden/indra/llvfs/lldir.cpp
parentMerge remote branch 'armin/armin-1.2.0-next' into login-manager (diff)
downloadmeta-impy-f8a9fa67650d1b77c0e88a5287d8259fd2829412.zip
meta-impy-f8a9fa67650d1b77c0e88a5287d8259fd2829412.tar.gz
meta-impy-f8a9fa67650d1b77c0e88a5287d8259fd2829412.tar.bz2
meta-impy-f8a9fa67650d1b77c0e88a5287d8259fd2829412.tar.xz
Reverted "grid-firstname_lastname" user directories.
Back to "firstname_lastname", like it was without grid manager.
Diffstat (limited to '')
-rw-r--r--linden/indra/llvfs/lldir.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/linden/indra/llvfs/lldir.cpp b/linden/indra/llvfs/lldir.cpp
index c9af311..eb705dd 100644
--- a/linden/indra/llvfs/lldir.cpp
+++ b/linden/indra/llvfs/lldir.cpp
@@ -527,16 +527,16 @@ void LLDir::setLindenUserDir(const std::string &grid, const std::string &first,
527 { 527 {
528 // some platforms have case-sensitive filesystems, so be 528 // some platforms have case-sensitive filesystems, so be
529 // utterly consistent with our firstname/lastname case. 529 // utterly consistent with our firstname/lastname case.
530 std::string gridlower(grid); 530 // std::string gridlower(grid);
531 LLStringUtil::toLower(gridlower); 531 // LLStringUtil::toLower(gridlower);
532 std::string firstlower(first); 532 std::string firstlower(first);
533 LLStringUtil::toLower(firstlower); 533 LLStringUtil::toLower(firstlower);
534 std::string lastlower(last); 534 std::string lastlower(last);
535 LLStringUtil::toLower(lastlower); 535 LLStringUtil::toLower(lastlower);
536 mLindenUserDir = getOSUserAppDir(); 536 mLindenUserDir = getOSUserAppDir();
537 mLindenUserDir += mDirDelimiter; 537 mLindenUserDir += mDirDelimiter;
538 mLindenUserDir += gridlower; 538 // mLindenUserDir += gridlower;
539 mLindenUserDir += "-"; 539 // mLindenUserDir += "-";
540 mLindenUserDir += firstlower; 540 mLindenUserDir += firstlower;
541 mLindenUserDir += "_"; 541 mLindenUserDir += "_";
542 mLindenUserDir += lastlower; 542 mLindenUserDir += lastlower;
@@ -568,16 +568,16 @@ void LLDir::setPerAccountChatLogsDir(const std::string &grid, const std::string
568 { 568 {
569 // some platforms have case-sensitive filesystems, so be 569 // some platforms have case-sensitive filesystems, so be
570 // utterly consistent with our firstname/lastname case. 570 // utterly consistent with our firstname/lastname case.
571 std::string gridlower(grid); 571 // std::string gridlower(grid);
572 LLStringUtil::toLower(gridlower); 572 // LLStringUtil::toLower(gridlower);
573 std::string firstlower(first); 573 std::string firstlower(first);
574 LLStringUtil::toLower(firstlower); 574 LLStringUtil::toLower(firstlower);
575 std::string lastlower(last); 575 std::string lastlower(last);
576 LLStringUtil::toLower(lastlower); 576 LLStringUtil::toLower(lastlower);
577 mPerAccountChatLogsDir = getChatLogsDir(); 577 mPerAccountChatLogsDir = getChatLogsDir();
578 mPerAccountChatLogsDir += mDirDelimiter; 578 mPerAccountChatLogsDir += mDirDelimiter;
579 mPerAccountChatLogsDir += gridlower; 579 // mPerAccountChatLogsDir += gridlower;
580 mPerAccountChatLogsDir += "-"; 580 // mPerAccountChatLogsDir += "-";
581 mPerAccountChatLogsDir += firstlower; 581 mPerAccountChatLogsDir += firstlower;
582 mPerAccountChatLogsDir += "_"; 582 mPerAccountChatLogsDir += "_";
583 mPerAccountChatLogsDir += lastlower; 583 mPerAccountChatLogsDir += lastlower;