diff options
Diffstat (limited to 'src/net/tmwa/loginhandler.cpp')
-rw-r--r-- | src/net/tmwa/loginhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/tmwa/loginhandler.cpp b/src/net/tmwa/loginhandler.cpp index c58e7687e..75b5dba65 100644 --- a/src/net/tmwa/loginhandler.cpp +++ b/src/net/tmwa/loginhandler.cpp @@ -75,7 +75,7 @@ void LoginHandler::handleMessage(Net::MessageIn &msg) switch (msg.getId()) { case SMSG_CHAR_PASSWORD_RESPONSE: - procecessCharPasswordResponse(msg); + processCharPasswordResponse(msg); break; case SMSG_UPDATE_HOST: @@ -241,7 +241,7 @@ void LoginHandler::processServerVersion(Net::MessageIn &msg) mVersionResponse = true; } -void LoginHandler::processUpdateHost2(Net::MessageIn &msg) const +void LoginHandler::processUpdateHost2(Net::MessageIn &msg) { const int len = msg.readInt16("len") - 4; const std::string updateHost = msg.readString(len, "host"); |