diff options
| author | Brad Kittenbrink <brad@lindenlab.com> | 2022-03-09 14:13:02 -0800 | 
|---|---|---|
| committer | Brad Kittenbrink <brad@lindenlab.com> | 2022-03-17 13:29:12 -0700 | 
| commit | 6bdd744d78f2040767abe57afcb06f8a55a9dd83 (patch) | |
| tree | 3b061503e2dab19ee3c472d3f21436c971d29caf /indra/newview/tests | |
| parent | dc7a24681b4f01b187ae686b628d98a4214a8ab1 (diff) | |
SL-17019 mfa_hash should get saved per-username
Diffstat (limited to 'indra/newview/tests')
| -rw-r--r-- | indra/newview/tests/lllogininstance_test.cpp | 11 | 
1 files changed, 6 insertions, 5 deletions
| diff --git a/indra/newview/tests/lllogininstance_test.cpp b/indra/newview/tests/lllogininstance_test.cpp index 9253516411..a8f57f975a 100644 --- a/indra/newview/tests/lllogininstance_test.cpp +++ b/indra/newview/tests/lllogininstance_test.cpp @@ -191,15 +191,14 @@ std::string LLGridManager::getGridId(const std::string& grid)      return std::string();  } -LLPointer<LLSecAPIHandler> getSecHandler(const std::string& handler_type) -{ -    return nullptr; -} +//LLPointer<LLSecAPIHandler> getSecHandler(const std::string& handler_type) +//{ +//    return nullptr; +//}  //-----------------------------------------------------------------------------  #include "../llviewercontrol.h"  LLControlGroup gSavedSettings("Global"); -LLControlGroup gSavedPerAccountSettings("PerAccount");  LLControlGroup::LLControlGroup(const std::string& name) :  	LLInstanceTracker<LLControlGroup, std::string>(name){} @@ -236,6 +235,8 @@ LLAppViewer * LLAppViewer::sInstance = 0;  static std::string gTOSType;  static LLEventPump * gTOSReplyPump = NULL; +LLPointer<LLSecAPIHandler> gSecAPIHandler; +  //static  LLFloater* LLFloaterReg::showInstance(const std::string& name, const LLSD& key, BOOL focus)  { | 
