changeset 30712:594f99ea88e6

For the debug message: Timeout awaiting ACK for command log the command code in decimal not hex. Less confusion that way.
author andrew.victor@mxit.com
date Wed, 02 Jun 2010 06:38:22 +0000
parents ab0c6287e9a5
children 1dc5382d91d5
files libpurple/protocols/mxit/protocol.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/mxit/protocol.c	Wed Jun 02 06:27:24 2010 +0000
+++ b/libpurple/protocols/mxit/protocol.c	Wed Jun 02 06:38:22 2010 +0000
@@ -520,7 +520,7 @@
 		/* 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;