diff options
author | Logan Dethrow <log@lindenlab.com> | 2013-03-28 18:07:54 -0400 |
---|---|---|
committer | Logan Dethrow <log@lindenlab.com> | 2013-03-28 18:07:54 -0400 |
commit | cfd35b8b22e8043ab14c57f6ee6108cea471a1ab (patch) | |
tree | 16215ef4d5cbd202813f7282f257c593ba5241cc /indra/newview/llworld.cpp | |
parent | 30ba176d185f238ffd4d563730e8fef4078b904c (diff) |
Made a bug that was masking the warning about mismatched caps coming from a region. They could never match because certain capabilities are explicitly not stored when we receive them.
* Made mSecondCapabilitiesTracker set capabilities in a way that more closely matches mCapabilities so that they will match up when we get a second cap grant from a region if the caps that were sent are actually the same.
* Added more logging around setting a region's seed capability.
* Also added a static function in llviewerregion to dump out a CapabilityMap based on the logActiveCapabilities method. Defined the old method in terms of the new static free function.
Diffstat (limited to 'indra/newview/llworld.cpp')
-rw-r--r-- | indra/newview/llworld.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llworld.cpp b/indra/newview/llworld.cpp index 793becf0c8..d9da639af9 100644 --- a/indra/newview/llworld.cpp +++ b/indra/newview/llworld.cpp @@ -1065,6 +1065,8 @@ public: << sim << llendl; return; } + LL_DEBUGS("CrossingCaps") << "Calling setSeedCapability from LLEstablishAgentCommunication::post. Seed cap == " + << input["body"]["seed-capability"] << LL_ENDL; regionp->setSeedCapability(input["body"]["seed-capability"]); } }; |