From ef946eebf0520607c1c7c72c80b51de63d9d941e Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 19 Nov 2008 14:20:15 -0500 Subject: Add some infrastructure code to add data providers. This currently breacks the dameon because of a problem with destroying the monitor dbus server in the children after fork() --- server/server.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'server/server.c') diff --git a/server/server.c b/server/server.c index d9591997..01bcf29c 100644 --- a/server/server.c +++ b/server/server.c @@ -33,6 +33,7 @@ #include "../ldb/include/ldb.h" #include "service.h" #include "confdb/confdb.h" +#include "providers/providers.h" #include "monitor.h" extern void monitor_task_init(struct task_server *task); @@ -214,6 +215,7 @@ int main(int argc, const char *argv[]) /* Services */ register_server_service("nss", nss_task_init); + register_server_service("dp", dp_task_init); /* the monitor starts the services */ status = start_monitor(mem_ctx, event_ctx, confdb_ctx); -- cgit