diff options
author | Igor Borovkov <iborovkov@productengine.com> | 2009-12-14 17:11:15 +0200 |
---|---|---|
committer | Igor Borovkov <iborovkov@productengine.com> | 2009-12-14 17:11:15 +0200 |
commit | c1b31cd97accfbd67f12ffbdff41f61ba9a01843 (patch) | |
tree | e13a5e68523f6ee2889b8eaf81a8bdc81844a77a /indra/newview/lltexturefetch.cpp | |
parent | 222dfaef0aa16ced2fd6285763467e5bfa8ed574 (diff) | |
parent | c159d9165dda268f3d8d16e95dac81bc8a9e12be (diff) |
merge
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/lltexturefetch.cpp')
-rw-r--r-- | indra/newview/lltexturefetch.cpp | 4 |
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; } |