From 87252455ff3ea4888ee86999070cf356a49c4a91 Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Wed, 8 Dec 2021 13:27:31 -0500 Subject: [PATCH] Fix linux machine id generation --- indra/newview/llmachineid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llmachineid.cpp b/indra/newview/llmachineid.cpp index ffcb30262e0..c3b193876eb 100644 --- a/indra/newview/llmachineid.cpp +++ b/indra/newview/llmachineid.cpp @@ -466,7 +466,7 @@ S32 LLMachineID::init() } } #else - unsigned char * staticPtr = (unsigned char *)(&static_legacy_id[0]); + unsigned char * staticPtr = (unsigned char *)(&static_unique_id[0]); ret_code = LLUUID::getNodeID(staticPtr); has_static_unique_id = true; has_static_legacy_id = false; -- GitLab