pidgin/pidgin

Use more understandable descriptions in places where outgoing purple values and old cipher API was used
--- a/libpurple/protocols/jabber/jabber.c Sun Jan 26 02:09:31 2014 +0530
+++ b/libpurple/protocols/jabber/jabber.c Sun Jan 26 02:12:49 2014 +0530
@@ -4001,12 +4001,12 @@
purple_signal_register(plugin, "jabber-receiving-xmlnode",
purple_marshal_VOID__POINTER_POINTER, G_TYPE_NONE, 2,
PURPLE_TYPE_CONNECTION,
- G_TYPE_POINTER); /* modifiable PurpleXmlNode */
+ G_TYPE_POINTER); /* pointer to a PurpleXmlNode* */
purple_signal_register(plugin, "jabber-sending-xmlnode",
purple_marshal_VOID__POINTER_POINTER, G_TYPE_NONE, 2,
PURPLE_TYPE_CONNECTION,
- G_TYPE_POINTER); /* modifiable PurpleXmlNode */
+ G_TYPE_POINTER); /* pointer to a PurpleXmlNode* */
/*
* Do not remove this or the plugin will fail. Completely. You have been
--- a/libpurple/protocols/jabber/jutil.c Sun Jan 26 02:09:31 2014 +0530
+++ b/libpurple/protocols/jabber/jutil.c Sun Jan 26 02:12:49 2014 +0530
@@ -751,7 +751,7 @@
if (hash == NULL)
{
- purple_debug_error("jabber", "Could not find %s cipher\n", hash_algo);
+ purple_debug_error("jabber", "Unexpected hashing algorithm %s requested\n", hash_algo);
g_return_val_if_reached(NULL);
}