diff options
author | Vincent Thibault <vthibault.mobile@gmail.com> | 2014-07-28 12:25:52 +0200 |
---|---|---|
committer | Vincent Thibault <vthibault.mobile@gmail.com> | 2014-07-28 12:25:52 +0200 |
commit | 98ef4c5a374fb6b9e0f323c9ef1af87fd5b56191 (patch) | |
tree | 88e8106be48fc023584fa1590030a080c10f392c /src/login | |
parent | be0de5a9f6c0b4ceeaa70b044d58ae584e97d9fd (diff) | |
download | hercules-98ef4c5a374fb6b9e0f323c9ef1af87fd5b56191.tar.gz hercules-98ef4c5a374fb6b9e0f323c9ef1af87fd5b56191.tar.bz2 hercules-98ef4c5a374fb6b9e0f323c9ef1af87fd5b56191.tar.xz hercules-98ef4c5a374fb6b9e0f323c9ef1af87fd5b56191.zip |
Fix argument error in Client Hash
Diffstat (limited to 'src/login')
-rw-r--r-- | src/login/login.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/login/login.c b/src/login/login.c index cb30de2f3..c12c9bde9 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -1036,7 +1036,7 @@ int mmo_auth(struct login_session_data* sd, bool isServer) { int i; if( !sd->has_client_hash ) { - ShowNotice("Client didn't send client hash (account: %s, pass: %s, ip: %s)\n", sd->userid, sd->passwd, acc.state, ip); + ShowNotice("Client didn't send client hash (account: %s, pass: %s, ip: %s)\n", sd->userid, sd->passwd, ip); return 5; } |