From e0c27db16771ebcc95111595acea192fd52e5e02 Mon Sep 17 00:00:00 2001 From: Rider Linden Date: Thu, 3 Sep 2015 12:34:21 -0700 Subject: Correct use of filename vs. path in llfeaturemanager coroutine. --- indra/newview/llfeaturemanager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'indra') 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(); } -- cgit v1.2.3