diff libpurple/media/backend-fs2.c @ 29178:a7cad99144f0

Make the backend interface's set_remote_codecs function return gboolean. This is to match PurpleMedia's set_remote_codecs returning gboolean.
author maiku@pidgin.im
date Mon, 26 Oct 2009 22:59:13 +0000
parents f0966e90ec44
children a39696686dd6
line wrap: on
line diff
--- a/libpurple/media/backend-fs2.c	Mon Oct 26 22:50:23 2009 +0000
+++ b/libpurple/media/backend-fs2.c	Mon Oct 26 22:59:13 2009 +0000
@@ -75,7 +75,7 @@
 static GList *purple_media_backend_fs2_get_local_candidates(
 		PurpleMediaBackend *self,
 		const gchar *sess_id, const gchar *participant);
-static void purple_media_backend_fs2_set_remote_codecs(
+static gboolean purple_media_backend_fs2_set_remote_codecs(
 		PurpleMediaBackend *self,
 		const gchar *sess_id, const gchar *participant,
 		GList *codecs);
@@ -1430,11 +1430,12 @@
 	return candidates;
 }
 
-static void
+static gboolean
 purple_media_backend_fs2_set_remote_codecs(PurpleMediaBackend *self,
 		const gchar *sess_id, const gchar *participant,
 		GList *codecs)
 {
+	return FALSE;
 }
 
 static void