diff options
Diffstat (limited to 'linden/indra/llmessage/llhttpclient.cpp')
-rw-r--r-- | linden/indra/llmessage/llhttpclient.cpp | 4 |
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 | } |