diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2009-12-11 20:58:20 -0700 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2009-12-11 20:58:20 -0700 |
commit | 4019c79a27c59d6a75ae5ad3c5029c1407b0fe09 (patch) | |
tree | 92fd26794dbe2d74e778372cca4b4d6feae121a5 /indra | |
parent | 943e1fbe0230ecaef17951faa33eec0b95be5f8e (diff) | |
parent | b79d694f6d3ce6fda0a97941835d2da3501f2205 (diff) |
Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0/
Diffstat (limited to 'indra')
-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; } |