From 41cd9ff9b3ffd507f2ce9bf7e6d100295a6f1d00 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Tue, 21 Jun 2016 18:59:05 +0000 Subject: [PATCH] will it end? --- .../application/LoginServer/src/shared/ClientConnection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/server/application/LoginServer/src/shared/ClientConnection.cpp b/engine/server/application/LoginServer/src/shared/ClientConnection.cpp index eb79d2ce..a2db9786 100755 --- a/engine/server/application/LoginServer/src/shared/ClientConnection.cpp +++ b/engine/server/application/LoginServer/src/shared/ClientConnection.cpp @@ -193,7 +193,7 @@ void ClientConnection::validateClient(const std::string & id, const std::string suid = h(lcaseId.c_str()); //lint !e603 // Symbol 'h' not initialized (it's a functor) } - LOG("LoginClientConnection", ("validateClient() for stationId (%lu) at IP (%s), id (%s)", m_stationId, getRemoteAddress().c_str(), trimmedId.c_str())); + LOG("LoginClientConnection", ("validateClient() for stationId (%lu) at IP (%s), id (%s)", m_stationId, getRemoteAddress().c_str(), lcaseId.c_str())); std::string authURL(ConfigLoginServer::getExternalAuthUrl()); @@ -222,7 +222,7 @@ void ClientConnection::validateClient(const std::string & id, const std::string if (authOK) { - LoginServer::getInstance().onValidateClient(suid, trimmedId, this, true, NULL, 0xFFFFFFFF, 0xFFFFFFFF); + LoginServer::getInstance().onValidateClient(suid, lcaseId, this, true, NULL, 0xFFFFFFFF, 0xFFFFFFFF); } // else this case will never be reached, noop }