mirror of
https://bitbucket.org/seefoe/src.git
synced 2026-07-30 00:15:46 -04:00
truly fix the ghosting problem this time
This commit is contained in:
@@ -189,7 +189,7 @@ void ClientConnection::validateClient(const std::string & id, const std::string
|
||||
if (suid == 0)
|
||||
{
|
||||
std::hash<std::string> h;
|
||||
suid = h(trimmedId); //lint !e603 // Symbol 'h' not initialized (it's a functor)
|
||||
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()));
|
||||
|
||||
Reference in New Issue
Block a user