pidgin.mxit: a0724faf: For the debug message:
andrew.victor at mxit.com
andrew.victor at mxit.com
Wed Jun 2 18:01:03 EDT 2010
-----------------------------------------------------------------
Revision: a0724fafa6049a9eceda5b9605e07a5a0f95e26f
Ancestor: 5678075aac60c9e2df31428334802e54973edbdb
Author: andrew.victor at mxit.com
Date: 2010-06-02T06:38:22
Branch: im.pidgin.pidgin.mxit
URL: http://d.pidgin.im/viewmtn/revision/info/a0724fafa6049a9eceda5b9605e07a5a0f95e26f
Modified files:
libpurple/protocols/mxit/protocol.c
ChangeLog:
For the debug message:
Timeout awaiting ACK for command
log the command code in decimal not hex. Less confusion that way.
-------------- next part --------------
============================================================
--- libpurple/protocols/mxit/protocol.c 45d6424a6c418ee410a41b95fa0d60b935c40af0
+++ libpurple/protocols/mxit/protocol.c b9ceffc9dbb27b91d58bc792ac63cda4ea7505c6
@@ -520,7 +520,7 @@ gboolean mxit_manage_queue( gpointer use
/* we are still waiting for an outstanding ACK from the MXit server */
if ( session->last_tx <= time( NULL ) - MXIT_ACK_TIMEOUT ) {
/* ack timeout! so we close the connection here */
- purple_debug_info( MXIT_PLUGIN_ID, "mxit_manage_queue: Timeout awaiting ACK for command '%X'\n", session->outack );
+ purple_debug_info( MXIT_PLUGIN_ID, "mxit_manage_queue: Timeout awaiting ACK for command '%i'\n", session->outack );
purple_connection_error( session->con, _( "Timeout while waiting for a response from the MXit server." ) );
}
return TRUE;
More information about the Commits
mailing list