diff options
author | Oz Linden <oz@lindenlab.com> | 2011-06-07 18:55:58 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-06-07 18:55:58 -0400 |
commit | fd82dee186488a216aa4d7815c3a26848e860f20 (patch) | |
tree | 2a497dd7b8e1a6d96fe36e0b8cd2b3ae1339665f | |
parent | 14f3ad45732ffbb382b01042b663ad2f65a161e2 (diff) | |
parent | 4afd31b408ddbe7923773a6f12e4eec3c7876e54 (diff) |
merge changes for storm-1324
-rw-r--r-- | indra/newview/llappviewer.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 90f46316e8..d2582d524d 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -3497,7 +3497,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)) @@ -3725,8 +3725,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; |