summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorMonty Brandenberg <monty@lindenlab.com>2012-06-19 17:12:20 -0400
committerMonty Brandenberg <monty@lindenlab.com>2012-06-19 17:12:20 -0400
commit6b4fe9fadc2301eb13a2854457b67fbebe045b08 (patch)
tree81b2b25ae98d1d0d0df14ae3f1ba86ec9cfdc8bb /indra/newview
parenta50944e078b98435685f04eda0ba93e95d4c61f2 (diff)
When a Content-Range header is received, make available the full triplet of <offset, length, fulllength>.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/lltexturefetch.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp
index 6e14c5fc63..2eda6a9b80 100644
--- a/indra/newview/lltexturefetch.cpp
+++ b/indra/newview/lltexturefetch.cpp
@@ -1735,8 +1735,8 @@ void LLTextureFetchWorker::onCompleted(LLCore::HttpHandle handle, LLCore::HttpRe
<< " status: " << status.toHex()
<< " '" << status.toString() << "'"
<< llendl;
-// unsigned int offset(0), length(0);
-// response->getRange(&offset, &length);
+// unsigned int offset(0), length(0), full_length(0);
+// response->getRange(&offset, &length, &full_length);
// llwarns << "HTTP COMPLETE: " << mID << " handle: " << handle
// << " status: " << status.toULong() << " '" << status.toString() << "'"
// << " req offset: " << mRequestedOffset << " req length: " << mRequestedSize