summaryrefslogtreecommitdiff
path: root/src/login
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2014-05-19 17:56:22 -0700
committerBen Longbons <b.r.longbons@gmail.com>2014-05-19 17:56:22 -0700
commit42a46737d480c997e6f6ebbf57e1c8f3b56ac940 (patch)
tree53bd842c0ef7071b06faad51de5813a9e4f4efb5 /src/login
parent630782d8c6e7bdd9cc1d5b1d0f49836752f9228b (diff)
downloadtmwa-42a46737d480c997e6f6ebbf57e1c8f3b56ac940.tar.gz
tmwa-42a46737d480c997e6f6ebbf57e1c8f3b56ac940.tar.bz2
tmwa-42a46737d480c997e6f6ebbf57e1c8f3b56ac940.tar.xz
tmwa-42a46737d480c997e6f6ebbf57e1c8f3b56ac940.zip
Fix a couple of real bugs and also some gcc 4.7 compatibility
Diffstat (limited to 'src/login')
-rw-r--r--src/login/login.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/login/login.cpp b/src/login/login.cpp
index 3f91025..d553d7c 100644
--- a/src/login/login.cpp
+++ b/src/login/login.cpp
@@ -1918,7 +1918,7 @@ void parse_admin(Session *s)
fixed_37.account_id = AccountId();
AccountName account_name = stringish<AccountName>(fixed.account_name.to_print());
int statut = fixed.status;
- timestamp_seconds_buffer error_message = stringish<timestamp_seconds_buffer>(error_message.to_print());
+ timestamp_seconds_buffer error_message = stringish<timestamp_seconds_buffer>(fixed.error_message.to_print());
if (statut != 7 || !error_message)
{
// 7: // 6 = Your are Prohibited to log in until %s
@@ -2316,7 +2316,7 @@ void parse_admin(Session *s)
SPacket_0x7945_Fixed fixed_45;
fixed_45.account_id = AccountId();
- AccountName account_name = stringish<AccountName>(account_name.to_print());
+ AccountName account_name = stringish<AccountName>(fixed.account_name.to_print());
const AuthData *ad = search_account(account_name);
if (ad)
{