diff options
author | James Cook <james@lindenlab.com> | 2010-05-04 16:20:02 -0700 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-05-04 16:20:02 -0700 |
commit | 5838494c504257e6fff9ea39c309fd4162dfdf60 (patch) | |
tree | dcf6ee4464c16b96f8a9da588b8b3969a5cfb77d /indra/llmessage/llhttpclient.cpp | |
parent | 831dd9ca40f199f2a9e89eee56d12e217ced0cc4 (diff) |
DEV-49633 WIP, Display name cache uses "Expires" headers for timeouts
Diffstat (limited to 'indra/llmessage/llhttpclient.cpp')
-rw-r--r-- | indra/llmessage/llhttpclient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/llhttpclient.cpp b/indra/llmessage/llhttpclient.cpp index dd56e18caf..bd05c5d2c4 100644 --- a/indra/llmessage/llhttpclient.cpp +++ b/indra/llmessage/llhttpclient.cpp @@ -79,8 +79,8 @@ namespace { if (mResponder.get()) { - mResponder->completedRaw(mStatus, mReason, channels, buffer); mResponder->completedHeader(mStatus, mReason, mHeaderOutput); + mResponder->completedRaw(mStatus, mReason, channels, buffer); } } virtual void header(const std::string& header, const std::string& value) |