summaryrefslogtreecommitdiff
path: root/indra/newview/lltexturefetch.cpp
diff options
context:
space:
mode:
authorrichard <none@none>2009-12-14 14:35:24 -0800
committerrichard <none@none>2009-12-14 14:35:24 -0800
commit861640adf90809131210175368850d0ccc1d669e (patch)
tree186582ebb54a61cd8055f45fa59a56b3963675be /indra/newview/lltexturefetch.cpp
parent2313867f9be1f6365d754c417a4807384a915263 (diff)
parent7f0e7a1fed2caa29b9950e3e5a638ba379a67de5 (diff)
merge
Diffstat (limited to 'indra/newview/lltexturefetch.cpp')
-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 67007629c0..e29c96bec4 100644
--- a/indra/newview/lltexturefetch.cpp
+++ b/indra/newview/lltexturefetch.cpp
@@ -311,10 +311,10 @@ public:
{
bool success = false;
bool partial = false;
- if (200 <= status && status < 300)
+ if (HTTP_OK <= status && status < HTTP_MULTIPLE_CHOICES)
{
success = true;
- if (203 == status) // partial information (i.e. last block)
+ if (HTTP_PARTIAL_CONTENT == status) // partial information (i.e. last block)
{
partial = true;
}