summaryrefslogtreecommitdiff
path: root/indra/newview/llstartup.cpp
diff options
context:
space:
mode:
authorBrad Kittenbrink <brad@lindenlab.com>2022-02-04 14:03:05 -0800
committerBrad Kittenbrink <brad@lindenlab.com>2022-02-04 14:28:07 -0800
commit8422183958a54e49c230bf85743336e0dd4dff71 (patch)
tree2429ac7cb6af2e7bc270d7f6a367f503d0f1eec7 /indra/newview/llstartup.cpp
parent9ee43668bf02f2594ccf57fa342ce400c653343c (diff)
Related to fix for SL-16792, standardize on naming the filed simply mfa_hash end-to-end to avoid confusion
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r--indra/newview/llstartup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp
index 956ed2d212..b85c01a1f0 100644
--- a/indra/newview/llstartup.cpp
+++ b/indra/newview/llstartup.cpp
@@ -3598,11 +3598,11 @@ bool process_login_success_response()
LLViewerMedia::getInstance()->openIDSetup(openid_url, openid_token);
}
- if(response.has("slmfa_hash"))
+ if(response.has("mfa_hash"))
{
LLPointer<LLSecAPIHandler> basic_secure_store = getSecHandler(BASIC_SECHANDLER);
std::string grid(LLGridManager::getInstance()->getGridId());
- basic_secure_store->setProtectedData("slmfa_hash", grid, response["slmfa_hash"]);
+ basic_secure_store->setProtectedData("mfa_hash", grid, response["mfa_hash"]);
}
bool success = false;