]> code.delx.au - pulseaudio/commitdiff
bluetooth: Change function name add_matches to update_matches.
authorTanu Kaskinen <tanuk@iki.fi>
Sun, 1 Jan 2012 17:44:28 +0000 (19:44 +0200)
committerTanu Kaskinen <tanuk@iki.fi>
Sat, 28 Jan 2012 12:16:23 +0000 (14:16 +0200)
A function that is used for removing matches should not be
called add_matches.

src/modules/bluetooth/module-bluetooth-proximity.c

index 9ba3fd8431479eeb046f15f412eb4067593943ff..3247017c29641e5a5bf53dd1c9584cba0aac4483 100644 (file)
@@ -325,7 +325,7 @@ finish:
     return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
 }
 
-static int add_matches(struct userdata *u, pa_bool_t add) {
+static int update_matches(struct userdata *u, pa_bool_t add) {
     char *filter1, *filter2;
     DBusError e;
     int r = -1;
@@ -401,7 +401,7 @@ int pa__init(pa_module*m) {
         goto fail;
     }
 
-    if (add_matches(u, TRUE) < 0)
+    if (update_matches(u, TRUE) < 0)
         goto fail;
 
     pa_assert_se(msg = dbus_message_new_method_call("org.bluez", u->hci_path, "org.bluez.Adapter", "ListBondings"));
@@ -476,7 +476,7 @@ void pa__done(pa_module*m) {
     }
 
     if (u->dbus_connection) {
-        add_matches(u, FALSE);
+        update_matches(u, FALSE);
         pa_dbus_connection_unref(u->dbus_connection);
     }