diff options
author | silinoron <none@none> | 2010-08-29 20:28:14 -0700 |
---|---|---|
committer | silinoron <none@none> | 2010-08-29 20:28:14 -0700 |
commit | 08205afcc94045c8d74ee4283821db68c5333b1d (patch) | |
tree | 2d3eff04fe18a1985d08708ed1d79d0a119c4cc6 /src/server/authserver/Server/AuthSocket.cpp | |
parent | 1f9936399c6fbd2fe723f1d2e9ceacf463a24f52 (diff) |
Rewrite much of the GM ticket system
* Extract storage and manipulation of tickets to TicketMgr (from ObjectMgr)
* Extract ticket commands to TicketCommands.cpp
* Adds support for sending GM responses and GM surveys.
* Fix structure of several ticket-related packets.
* Add support for understanding lag reports.
* Thanks Zor for some of the packet structures, and Cyrax for some sniffs
* Please report any issues encountered via the tracker.
--HG--
branch : trunk
Diffstat (limited to 'src/server/authserver/Server/AuthSocket.cpp')
-rw-r--r-- | src/server/authserver/Server/AuthSocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/authserver/Server/AuthSocket.cpp b/src/server/authserver/Server/AuthSocket.cpp index 679210778f1..4fbdc53c420 100644 --- a/src/server/authserver/Server/AuthSocket.cpp +++ b/src/server/authserver/Server/AuthSocket.cpp @@ -907,7 +907,7 @@ bool AuthSocket::_HandleXferResume() uint64 start; socket().recv_skip(1); socket().recv((char*)&start,sizeof(start)); - fseek(pPatch, start, 0); + fseek(pPatch, long(start), 0); ACE_Based::Thread u(new PatcherRunnable(this)); return true; |