diff options
Diffstat (limited to 'src/server/authserver')
| -rw-r--r-- | src/server/authserver/Realms/RealmList.cpp | 4 | ||||
| -rw-r--r-- | src/server/authserver/Server/AuthSocket.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/server/authserver/Realms/RealmList.cpp b/src/server/authserver/Realms/RealmList.cpp index 42b63c9e322..493614bc963 100644 --- a/src/server/authserver/Realms/RealmList.cpp +++ b/src/server/authserver/Realms/RealmList.cpp @@ -86,7 +86,7 @@ void RealmList::UpdateRealms(bool init) { do { - uint32 realmId = result->GetUInt32(0); + uint32 realmId = result->GetUInt32(0); const std::string& name = result->GetString(1); const std::string& address = result->GetString(2); uint32 port = result->GetUInt32(3); @@ -96,7 +96,7 @@ void RealmList::UpdateRealms(bool init) uint8 allowedSecurityLevel = result->GetUInt8(7); float pop = result->GetFloat(8); uint32 build = result->GetUInt32(9); - + UpdateRealm(realmId, name, address, port, icon, color, timezone, (allowedSecurityLevel <= SEC_ADMINISTRATOR ? AccountTypes(allowedSecurityLevel) : SEC_ADMINISTRATOR), pop, build); if (init) diff --git a/src/server/authserver/Server/AuthSocket.cpp b/src/server/authserver/Server/AuthSocket.cpp index da8dcafe67d..8b8d3cf35a0 100644 --- a/src/server/authserver/Server/AuthSocket.cpp +++ b/src/server/authserver/Server/AuthSocket.cpp @@ -611,7 +611,7 @@ bool AuthSocket::_HandleLogonProof() ///- Update the sessionkey, last_ip, last login time and reset number of failed logins in the account table for this account // No SQL injection (escaped user name) and IP address as received by socket const char* K_hex = K.AsHexStr(); - + PreparedStatement* stmt = LoginDatabase.GetPreparedStatement(LOGIN_SET_LOGONPROOF); stmt->setString(0, K_hex); stmt->setString(1, socket().get_remote_address().c_str()); |
