diff options
author | silinoron <none@none> | 2010-12-27 09:19:44 -0800 |
---|---|---|
committer | silinoron <none@none> | 2010-12-27 09:19:44 -0800 |
commit | 8b99f28e29891d0b97c2482755ad262df6175aa8 (patch) | |
tree | 0c77cebdeab74e01167c5af50d41cb82ad8d537e | |
parent | 60c6d462e4b1c2c43fe1e8ba47a962ef5e4dc6aa (diff) |
Core/Authserver: Revert a small mistake. Thanks aurimas.
--HG--
branch : trunk
-rwxr-xr-x | 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 4145c5c2fa1..6a7465ce6f4 100755 --- a/src/server/authserver/Server/AuthSocket.cpp +++ b/src/server/authserver/Server/AuthSocket.cpp @@ -634,7 +634,7 @@ bool AuthSocket::_HandleLogonProof() } else { - uint8 data[4]= { AUTH_LOGON_PROOF, WOW_FAIL_UNKNOWN_ACCOUNT, 3, 0 }; + char data[4] = { AUTH_LOGON_PROOF, WOW_FAIL_UNKNOWN_ACCOUNT, 3, 0 }; socket().send(data, sizeof(data)); sLog->outBasic("[AuthChallenge] account %s tried to login with wrong password!", _login.c_str()); |