From 41ebb56b9e5be27821b560c2dcd5587f1358869c Mon Sep 17 00:00:00 2001 From: Ansariel Date: Thu, 20 Mar 2014 11:18:11 +0100 Subject: [PATCH] Build proper full name in legacy LLCacheName::getIfThere() --- indra/llmessage/llcachename.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llmessage/llcachename.cpp b/indra/llmessage/llcachename.cpp index b33af4aafa..a157895dcc 100755 --- a/indra/llmessage/llcachename.cpp +++ b/indra/llmessage/llcachename.cpp @@ -715,7 +715,7 @@ BOOL LLCacheName::getIfThere(const LLUUID& id, std::string& fullname, BOOL& is_g } else { - fullname = entry->mFirstName + " " + entry->mLastName; + fullname = buildFullName(entry->mFirstName, entry->mLastName); } is_group = entry->mIsGroup; return TRUE;