libpurple/connection.c

branch
soc.2013.gobjectification.plugins
changeset 36626
18fc361b3704
parent 36623
caaadef03507
child 36637
9b0109ae118d
--- a/libpurple/connection.c	Sun Sep 01 00:38:13 2013 +0530
+++ b/libpurple/connection.c	Sun Sep 01 00:38:40 2013 +0530
@@ -872,7 +872,7 @@
 	if (!purple_account_is_disconnected(account))
 		return;
 
-	protocol = purple_find_protocol_info(purple_account_get_protocol_id(account));
+	protocol = purple_protocols_find(purple_account_get_protocol_id(account));
 
 	if (protocol == NULL) {
 		gchar *message;
@@ -936,7 +936,7 @@
 
 	g_return_if_fail(account != NULL);
 
-	protocol = purple_find_protocol_info(purple_account_get_protocol_id(account));
+	protocol = purple_protocols_find(purple_account_get_protocol_id(account));
 
 	if (protocol == NULL) {
 		gchar *message;

mercurial