aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llhttpclient.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-28 17:21:23 -0500
committerJacek Antonelli2008-09-28 17:21:46 -0500
commit31e7c77a411d94bc87f0232588b339149bb29a49 (patch)
tree49e487700e91713e620e4d33f20b7f7afb5a2fa9 /linden/indra/llmessage/llhttpclient.cpp
parentSecond Life viewer sources 1.21.2-RC (diff)
downloadmeta-impy-31e7c77a411d94bc87f0232588b339149bb29a49.zip
meta-impy-31e7c77a411d94bc87f0232588b339149bb29a49.tar.gz
meta-impy-31e7c77a411d94bc87f0232588b339149bb29a49.tar.bz2
meta-impy-31e7c77a411d94bc87f0232588b339149bb29a49.tar.xz
Second Life viewer sources 1.21.3-RC
Diffstat (limited to 'linden/indra/llmessage/llhttpclient.cpp')
-rw-r--r--linden/indra/llmessage/llhttpclient.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/llmessage/llhttpclient.cpp b/linden/indra/llmessage/llhttpclient.cpp
index caeaee1..fc2612f 100644
--- a/linden/indra/llmessage/llhttpclient.cpp
+++ b/linden/indra/llmessage/llhttpclient.cpp
@@ -56,7 +56,7 @@ namespace
56 { 56 {
57 public: 57 public:
58 LLHTTPClientURLAdaptor(LLCurl::ResponderPtr responder) 58 LLHTTPClientURLAdaptor(LLCurl::ResponderPtr responder)
59 : mResponder(responder), mStatus(499), 59 : LLURLRequestComplete(), mResponder(responder), mStatus(499),
60 mReason("LLURLRequest complete w/no status") 60 mReason("LLURLRequest complete w/no status")
61 { 61 {
62 } 62 }
@@ -67,6 +67,8 @@ namespace
67 67
68 virtual void httpStatus(U32 status, const std::string& reason) 68 virtual void httpStatus(U32 status, const std::string& reason)
69 { 69 {
70 LLURLRequestComplete::httpStatus(status,reason);
71
70 mStatus = status; 72 mStatus = status;
71 mReason = reason; 73 mReason = reason;
72 } 74 }