mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
bluetooth: Change function name add_matches to update_matches.
A function that is used for removing matches should not be called add_matches.
This commit is contained in:
parent
8846239be7
commit
54ca23df6f
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue