aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver/Server/AuthSocket.cpp
diff options
context:
space:
mode:
authorShocker <none@none>2010-09-12 05:24:48 +0300
committerShocker <none@none>2010-09-12 05:24:48 +0300
commit90434d0a450625711b7eebeb6351607bb8dcb928 (patch)
tree6d44583810c5b82d1c96b7a557cfd0b812c443c9 /src/server/authserver/Server/AuthSocket.cpp
parent4da2cdffea2c1849c80bc03f8494681673803b8c (diff)
Auth: Typo fix in logon challenge handler, closes issue 3975, thanks 41782992
--HG-- branch : trunk
Diffstat (limited to 'src/server/authserver/Server/AuthSocket.cpp')
-rw-r--r--src/server/authserver/Server/AuthSocket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/authserver/Server/AuthSocket.cpp b/src/server/authserver/Server/AuthSocket.cpp
index 8b8d3cf35a0..1790f3b5bf7 100644
--- a/src/server/authserver/Server/AuthSocket.cpp
+++ b/src/server/authserver/Server/AuthSocket.cpp
@@ -426,7 +426,7 @@ bool AuthSocket::_HandleLogonChallenge()
else
{
///- Get the password from the account table, upper it, and make the SRP6 calculation
- std::string rI = res2->GetString(1);
+ std::string rI = res2->GetString(0);
///- Don't calculate (v, s) if there are already some in the database
std::string databaseV = res2->GetString(5);