[9631] Fix enum names.

Signed-off-by: AlexDereka <dereka.alex@gmail.com>
This commit is contained in:
Zor 2010-03-27 22:11:10 +03:00 committed by AlexDereka
parent 0150f48b52
commit 7b180e5fa8
5 changed files with 34 additions and 34 deletions

View file

@ -276,11 +276,11 @@ void AuthSocket::OnRead()
(table[i].status == STATUS_CONNECTED ||
(_authed && table[i].status == STATUS_AUTHED)))
{
DEBUG_LOG("[Auth] got data for cmd %u ibuf length %u", (uint32)_cmd, ibuf.GetLength());
DEBUG_LOG("[Auth] got data for cmd %u ibuf length "SIZEFMTD" ", (uint32)_cmd, ibuf.GetLength());
if (!(*this.*table[i].handler)())
{
DEBUG_LOG("Command handler failed for cmd %u ibuf length %u", (uint32)_cmd, ibuf.GetLength());
DEBUG_LOG("Command handler failed for cmd %u ibuf length "SIZEFMTD" ", (uint32)_cmd, ibuf.GetLength());
return;
}
break;