summaryrefslogtreecommitdiffstats
path: root/daemon
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2007-05-03 10:58:08 +0000
committerJohan Hedberg <johan.hedberg@nokia.com>2007-05-03 10:58:08 +0000
commit30957bc2890f3db99907178304046610e77c7efa (patch)
treec2ce494805a1527314e7e7f79d2596be8a695b38 /daemon
parent367cd9ae48f8393cdc68c25441dc8daac75909ff (diff)
generic introspection cleanup & small additions
Diffstat (limited to 'daemon')
-rw-r--r--daemon/database.c2
-rw-r--r--daemon/manager.c2
-rw-r--r--daemon/service.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/daemon/database.c b/daemon/database.c
index 231000c0..643f50d9 100644
--- a/daemon/database.c
+++ b/daemon/database.c
@@ -207,7 +207,7 @@ int database_init(DBusConnection *conn)
info("Starting database interface");
if (dbus_connection_register_interface(connection, SYSTEM_PATH,
- DATABASE_INTERFACE, database_table, NULL) == FALSE) {
+ DATABASE_INTERFACE, database_table, NULL, NULL) == FALSE) {
error("Database interface registration failed");
dbus_connection_unref(connection);
return -1;
diff --git a/daemon/manager.c b/daemon/manager.c
index 8693486c..d2976e13 100644
--- a/daemon/manager.c
+++ b/daemon/manager.c
@@ -80,7 +80,7 @@ int manager_init(DBusConnection *conn)
info("Starting manager interface");
if (dbus_connection_register_interface(connection, SYSTEM_PATH,
- MANAGER_INTERFACE, manager_table, NULL) == FALSE) {
+ MANAGER_INTERFACE, manager_table, NULL, NULL) == FALSE) {
error("Manager interface registration failed");
dbus_connection_unref(connection);
return -1;
diff --git a/daemon/service.c b/daemon/service.c
index 1886da52..2f982f4a 100644
--- a/daemon/service.c
+++ b/daemon/service.c
@@ -304,7 +304,7 @@ int service_init(DBusConnection *conn)
}
if (dbus_connection_register_interface(connection, "/org/bluez/service",
- SERVICE_INTERFACE, service_table, NULL) == FALSE) {
+ SERVICE_INTERFACE, service_table, NULL, NULL) == FALSE) {
error("Service interface registration failed");
dbus_connection_destroy_object_path(connection, "/org/bluez/service");
dbus_connection_unref(connection);