summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2015-09-03 12:34:21 -0700
committerRider Linden <rider@lindenlab.com>2015-09-03 12:34:21 -0700
commite0c27db16771ebcc95111595acea192fd52e5e02 (patch)
treebd6b59cfb30c333b0eb5f41c3f8345dadfb4871a /indra/newview
parentc08072a0508cefc6bfc8c05937e984a095f323ce (diff)
Correct use of filename vs. path in llfeaturemanager coroutine.
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/llfeaturemanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp
index 0b76ca16a9..d2f8c68558 100755
--- a/indra/newview/llfeaturemanager.cpp
+++ b/indra/newview/llfeaturemanager.cpp
@@ -536,13 +536,13 @@ void LLFeatureManager::fetchFeatureTableCoro(std::string tableName)
// write to file
const LLSD::Binary &raw = result[LLCoreHttpUtil::HttpCoroutineAdapter::HTTP_RESULTS_RAW].asBinary();
- LL_INFOS() << "writing feature table to " << filename << LL_ENDL;
+ LL_INFOS() << "writing feature table to " << path << LL_ENDL;
S32 size = raw.size();
if (size > 0)
{
// write to file
- LLAPRFile out(filename, LL_APR_WB);
+ LLAPRFile out(path, LL_APR_WB);
out.write(raw.data(), size);
out.close();
}