diff options
author | richard <none@none> | 2009-12-14 13:07:28 -0800 |
---|---|---|
committer | richard <none@none> | 2009-12-14 13:07:28 -0800 |
commit | 36dae1c1a0ed1c3adeadd5043a9a64c23c31b3e0 (patch) | |
tree | 6f438ddb1c7cbe623fc23e80510be7d0f77693a4 /indra/newview/lltexturefetch.cpp | |
parent | 76f062f1fe82d2b19938601800aae3105da7ad7a (diff) | |
parent | a9e409c7071ba74f01158aa7b876a1ad60161fc4 (diff) |
merge
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; } |