libpurple/protocols/mxit/actions.c

branch
mxit
changeset 30214
4425992b8c92
parent 30208
5fce100fca39
child 30215
a6860a140f6e
--- a/libpurple/protocols/mxit/actions.c	Thu May 20 09:03:37 2010 +0000
+++ b/libpurple/protocols/mxit/actions.c	Thu May 20 09:29:46 2010 +0000
@@ -304,11 +304,12 @@
 	char	version[256];
 
 	g_snprintf( version, sizeof( version ), "MXit libPurple Plugin v%s\n"
-											"MXit Client Protocol v%s\n\n"
+											"MXit Client Protocol v%i.%i\n\n"
 											"Author:\nPieter Loubser\n\n"
 											"Contributors:\nAndrew Victor\n\n"
 											"Testers:\nBraeme Le Roux\n\n",
-											MXIT_PLUGIN_VERSION, MXIT_CP_RELEASE );
+											MXIT_PLUGIN_VERSION,
+											( MXIT_CP_PROTO_VESION / 10 ), ( MXIT_CP_PROTO_VESION % 10 ) );
 
 	mxit_popup( PURPLE_NOTIFY_MSG_INFO, _( "About" ), version );
 }

mercurial