diff options
author | QAston <qaston@gmail.com> | 2014-01-26 22:04:45 +0100 |
---|---|---|
committer | QAston <qaston@gmail.com> | 2014-01-26 22:04:45 +0100 |
commit | 139ee0c8b73a8c700b4782cc414d4914c4cea74a (patch) | |
tree | 906b83420592e381f967734efc419fd055406d04 | |
parent | 38436f21c6928b9e237749ec91168e0b06fb69d5 (diff) |
Fix incorrect debug log in authserver
-rw-r--r-- | src/server/authserver/Server/AuthSocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/authserver/Server/AuthSocket.cpp b/src/server/authserver/Server/AuthSocket.cpp index f4e8603c812..8a2a6c67496 100644 --- a/src/server/authserver/Server/AuthSocket.cpp +++ b/src/server/authserver/Server/AuthSocket.cpp @@ -393,7 +393,7 @@ bool AuthSocket::_HandleLogonChallenge() bool locked = false; if (fields[2].GetUInt8() == 1) // if ip is locked { - TC_LOG_DEBUG("server.authserver", "[AuthChallenge] Account '%s' is locked to IP - '%s'", _login.c_str(), fields[3].GetCString()); + TC_LOG_DEBUG("server.authserver", "[AuthChallenge] Account '%s' is locked to IP - '%s'", _login.c_str(), fields[4].GetCString()); TC_LOG_DEBUG("server.authserver", "[AuthChallenge] Player address is '%s'", ip_address.c_str()); if (strcmp(fields[4].GetCString(), ip_address.c_str()) != 0) |