aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--linden/indra/newview/llpanellogin.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/newview/llpanellogin.cpp b/linden/indra/newview/llpanellogin.cpp
index ba5b963..e67e702 100644
--- a/linden/indra/newview/llpanellogin.cpp
+++ b/linden/indra/newview/llpanellogin.cpp
@@ -1084,7 +1084,8 @@ bool LLPanelLogin::convertUsernameToLegacy(std::string& username, std::string& f
1084 } 1084 }
1085 1085
1086 std::vector<std::string> names; 1086 std::vector<std::string> names;
1087 boost::algorithm::split(names, username, boost::is_any_of(" .")); 1087 boost::algorithm::split(names, username,
1088 boost::is_any_of(std::string(" .")));
1088 1089
1089 // maybe they typed in a few too many spaces? 1090 // maybe they typed in a few too many spaces?
1090 if (names.size() > 2) 1091 if (names.size() > 2)