summaryrefslogtreecommitdiff
path: root/indra/newview/llhasheduniqueid.cpp
diff options
context:
space:
mode:
authorandreykproductengine <andreykproductengine@lindenlab.com>2019-06-19 15:57:03 +0300
committerandreykproductengine <andreykproductengine@lindenlab.com>2019-06-19 15:57:03 +0300
commita74ea1811640f2647a1f6dd15663167dfdbe00ab (patch)
tree4928ff9fb0010674e0abf0498662986a8f2a67dd /indra/newview/llhasheduniqueid.cpp
parent55670eef350c9db849eab8b813ca7335fdec3435 (diff)
DRTVWR-493 LLMachineId to singleton
Diffstat (limited to 'indra/newview/llhasheduniqueid.cpp')
-rw-r--r--indra/newview/llhasheduniqueid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llhasheduniqueid.cpp b/indra/newview/llhasheduniqueid.cpp
index 03192d3e61..eca8d0935c 100644
--- a/indra/newview/llhasheduniqueid.cpp
+++ b/indra/newview/llhasheduniqueid.cpp
@@ -36,7 +36,7 @@ bool llHashedUniqueID(unsigned char id[MD5HEX_STR_SIZE])
LLMD5 hashed_unique_id;
unsigned char unique_id[MAC_ADDRESS_BYTES];
if ( LLUUID::getNodeID(unique_id)
- || LLMachineID::getUniqueID(unique_id, sizeof(unique_id))
+ || LLMachineID::getInstance()->getUniqueID(unique_id, sizeof(unique_id))
)
{
hashed_unique_id.update(unique_id, MAC_ADDRESS_BYTES);