diff options
author | Lennart Poettering <lennart@poettering.net> | 2009-03-12 16:25:48 -0300 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2009-03-12 16:25:48 -0300 |
commit | 2928b44c53a6648d6e91077e16947dbbed0e7546 (patch) | |
tree | 058632051a6f1e97751117e2de1152e34aedd9b1 /src/modules/bluetooth/module-bluetooth-proximity.c | |
parent | 47bc3b76fbdbeee915c50b3371899057b7fbbbcf (diff) | |
parent | 9e93b9ce0b4eb825d3ce434401e2ccb9ac54e779 (diff) |
Merge commit 'elmarco/bluetooth-fixes'
Diffstat (limited to 'src/modules/bluetooth/module-bluetooth-proximity.c')
-rw-r--r-- | src/modules/bluetooth/module-bluetooth-proximity.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/bluetooth/module-bluetooth-proximity.c b/src/modules/bluetooth/module-bluetooth-proximity.c index a3b525ee..c8d7b4d9 100644 --- a/src/modules/bluetooth/module-bluetooth-proximity.c +++ b/src/modules/bluetooth/module-bluetooth-proximity.c @@ -302,7 +302,7 @@ static DBusHandlerResult filter_func(DBusConnection *connection, DBusMessage *m, bonding_new(u, a); - return DBUS_HANDLER_RESULT_HANDLED; + return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; } else if (dbus_message_is_signal(m, "org.bluez.Adapter", "BondingRemoved")) { @@ -315,7 +315,7 @@ static DBusHandlerResult filter_func(DBusConnection *connection, DBusMessage *m, bonding_remove(u, a); - return DBUS_HANDLER_RESULT_HANDLED; + return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; } finish: |