diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2015-07-10 11:39:49 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2015-07-10 11:39:49 -0400 |
commit | fdb9a50d4ba3ee86b2878e1eba68d4e1536c4a15 (patch) | |
tree | 109048885bdac897a0dbbce43d4002be822dcfbf | |
parent | 768ef450678a93496fb69012efaa15c915969c47 (diff) |
MAINT-4952: correct name of LLViewerRegionImpl::requestBaseCapabilitiesCoro.
The string name being passed to LLCoros didn't match.
-rwxr-xr-x | indra/newview/llviewerregion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index b256482289..291af28bc3 100755 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -2919,7 +2919,7 @@ void LLViewerRegion::setSeedCapability(const std::string& url) setCapability("Seed", url); std::string coroname = - LLCoros::instance().launch("LLEnvironmentRequest::environmentRequestCoro", + LLCoros::instance().launch("LLViewerRegionImpl::requestBaseCapabilitiesCoro", boost::bind(&LLViewerRegionImpl::requestBaseCapabilitiesCoro, mImpl, getHandle())); LL_INFOS("AppInit", "Capabilities") << "Launching " << coroname << " requesting seed capabilities from " << url << LL_ENDL; |