libpurple/protocols/gg/pubdir-prpl.c

changeset 40708
53a26c29d26c
parent 40520
eae11ccb1bef
child 41212
9f0f4c23132e
--- a/libpurple/protocols/gg/pubdir-prpl.c	Thu Jan 14 21:20:10 2021 -0600
+++ b/libpurple/protocols/gg/pubdir-prpl.c	Thu Jan 14 22:33:49 2021 -0600
@@ -406,7 +406,8 @@
 }
 
 void
-ggp_pubdir_get_info_protocol(PurpleConnection *gc, const char *name)
+ggp_pubdir_get_info_protocol(PurpleProtocolServer *protocol_server,
+                             PurpleConnection *gc, const gchar *name)
 {
 	uin_t uin = ggp_str_to_uin(name);
 	uin_t *uin_p = g_new0(uin_t, 1);
@@ -606,7 +607,7 @@
 static void
 ggp_pubdir_search_results_info(PurpleConnection *gc, GList *row, gpointer _form)
 {
-	ggp_pubdir_get_info_protocol(gc, g_list_nth_data(row, 0));
+	ggp_pubdir_get_info_protocol(NULL, gc, g_list_nth_data(row, 0));
 }
 
 static void

mercurial