From 54ca23df6fb27b0874f72d8c747d8674c1028fb2 Mon Sep 17 00:00:00 2001 From: Tanu Kaskinen Date: Sun, 1 Jan 2012 19:44:28 +0200 Subject: [PATCH] bluetooth: Change function name add_matches to update_matches. A function that is used for removing matches should not be called add_matches. --- src/modules/bluetooth/module-bluetooth-proximity.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/bluetooth/module-bluetooth-proximity.c b/src/modules/bluetooth/module-bluetooth-proximity.c index 9ba3fd8..3247017 100644 --- a/src/modules/bluetooth/module-bluetooth-proximity.c +++ b/src/modules/bluetooth/module-bluetooth-proximity.c @@ -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); } -- 2.7.4