From 08205afcc94045c8d74ee4283821db68c5333b1d Mon Sep 17 00:00:00 2001 From: silinoron Date: Sun, 29 Aug 2010 20:28:14 -0700 Subject: 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 --- src/server/authserver/Server/AuthSocket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/server/authserver/Server/AuthSocket.cpp') 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; -- cgit v1.2.3