diff options
author | Kisuka <kisuka@kisuka.com> | 2014-07-29 10:51:24 -0700 |
---|---|---|
committer | Kisuka <kisuka@kisuka.com> | 2014-07-29 10:51:24 -0700 |
commit | 279ec10fc01f72bf8bf5e1e8c4ffbf9e5a810278 (patch) | |
tree | b225ce5d25036d2433236fd4dc84e1ed653690b7 /src/login/login.c | |
parent | 94117dc9fbd279b5bd3e44b3399142c62c7069bf (diff) | |
parent | 98ef4c5a374fb6b9e0f323c9ef1af87fd5b56191 (diff) | |
download | hercules-279ec10fc01f72bf8bf5e1e8c4ffbf9e5a810278.tar.gz hercules-279ec10fc01f72bf8bf5e1e8c4ffbf9e5a810278.tar.bz2 hercules-279ec10fc01f72bf8bf5e1e8c4ffbf9e5a810278.tar.xz hercules-279ec10fc01f72bf8bf5e1e8c4ffbf9e5a810278.zip |
Merge pull request #312 from vthibault/fix-argument-error
Fix argument error in Client Hash
Diffstat (limited to 'src/login/login.c')
-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 18c9d90cf..0488ae4ed 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -1041,7 +1041,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; } |