summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerregion.cpp
diff options
context:
space:
mode:
authorprep <prep@lindenlab.com>2013-02-28 13:40:36 -0500
committerprep <prep@lindenlab.com>2013-02-28 13:40:36 -0500
commitf92a830730b8acf8930a439ed874f27f77102260 (patch)
tree4aa8d49f7320991b062c76108db0fb33c6ef66db /indra/newview/llviewerregion.cpp
parenteae5cd57eb76fb65e36a69df90fa0aedeaa26ec1 (diff)
Bug fix# we don't want to be incrementing the responderid in the base responder
Diffstat (limited to 'indra/newview/llviewerregion.cpp')
-rwxr-xr-xindra/newview/llviewerregion.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp
index 0033be2dbf..9a1c5f89ef 100755
--- a/indra/newview/llviewerregion.cpp
+++ b/indra/newview/llviewerregion.cpp
@@ -1651,7 +1651,9 @@ void LLViewerRegion::setSeedCapability(const std::string& url)
//to the "original" seed cap received and determine why there is problem!
LLSD capabilityNames = LLSD::emptyArray();
mImpl->buildCapabilityNames( capabilityNames );
- LLHTTPClient::post( url, capabilityNames, BaseCapabilitiesCompleteTracker::build(getHandle(), ++mImpl->mHttpResponderID ),
+ S32 responderID = mImpl->mHttpResponderID+1;
+
+ LLHTTPClient::post( url, capabilityNames, BaseCapabilitiesCompleteTracker::build(getHandle(), responderID ),
LLSD(), CAP_REQUEST_TIMEOUT );
return;
}