summaryrefslogtreecommitdiff
path: root/indra/newview/llappviewer.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2011-06-09 16:28:57 -0400
committerOz Linden <oz@lindenlab.com>2011-06-09 16:28:57 -0400
commitf8f9e089e1ae8e439bc8c4373a183fe5210b2cea (patch)
treea11ad31691840f731d3394022cbed382d1a30400 /indra/newview/llappviewer.cpp
parent58e8ee5f9169818894f34bf1bfdd4efe46482e37 (diff)
parent68a7c4cb83aca58e6ad9162be9e5022d6f801eac (diff)
merge up latest viewer-development
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r--indra/newview/llappviewer.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index 569a7e2198..1d9519d675 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -3495,7 +3495,7 @@ void LLAppViewer::migrateCacheDirectory()
// Migrate inventory cache to avoid pain to inventory database after mass update
S32 file_count = 0;
std::string file_name;
- std::string mask = delimiter + "*.*";
+ std::string mask = "*.*";
LLDirIterator iter(old_cache_dir, mask);
while (iter.next(file_name))
@@ -3723,8 +3723,7 @@ bool LLAppViewer::initCache()
{
// doesn't exist, look for a data file
std::string mask;
- mask = gDirUtilp->getDirDelimiter();
- mask += VFS_DATA_FILE_BASE;
+ mask = VFS_DATA_FILE_BASE;
mask += "*";
std::string dir;