From 6a1d99dd0014d2212e2586097773f565a658bd3e Mon Sep 17 00:00:00 2001 From: Claudio Takahasi Date: Tue, 7 Nov 2006 18:02:48 +0000 Subject: Changed Started/Stopped signal interface --- hcid/dbus-service.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hcid/dbus-service.c') diff --git a/hcid/dbus-service.c b/hcid/dbus-service.c index 8f04dfdb..b4207059 100644 --- a/hcid/dbus-service.c +++ b/hcid/dbus-service.c @@ -361,7 +361,7 @@ static void start_reply(DBusPendingCall *call, void *udata) /* Send a signal to indicate that the service started properly */ message = dbus_message_new_signal(dbus_message_get_path(call_data->msg), - dbus_message_get_interface(call_data->msg), + "org.bluez.Service", "Started"); send_message_and_unref(call_data->conn, message); @@ -434,7 +434,7 @@ static void stop_reply(DBusPendingCall *call, void *udata) /* Send a signal to indicate that the service stopped properly */ message = dbus_message_new_signal(dbus_message_get_path(call_data->msg), - dbus_message_get_interface(call_data->msg), + "org.bluez.Service", "Stopped"); send_message_and_unref(call_data->conn, message); -- cgit