diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-02-04 21:58:29 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-02-04 21:58:29 +1100 |
commit | 0f8eeb81ec109cde681961614fb690f8373fa9c6 (patch) | |
tree | 03d3fe8f2a594cb291a3ecd10ab5c4a367cca556 /source4/dsdb/repl | |
parent | b3c5fbec47739ee2bb26f900d1f564a36dc3ad82 (diff) | |
download | samba-0f8eeb81ec109cde681961614fb690f8373fa9c6.tar.gz samba-0f8eeb81ec109cde681961614fb690f8373fa9c6.tar.bz2 samba-0f8eeb81ec109cde681961614fb690f8373fa9c6.zip |
Remove useless layer of indirection, where every service called
task_service_init() manually. Now this is called from service.c for
all services.
Andrew Bartlett
(This used to be commit 9c9a4731cafd0dcf6c8523a7b06759cd4f14e4db)
Diffstat (limited to 'source4/dsdb/repl')
-rw-r--r-- | source4/dsdb/repl/drepl_service.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/source4/dsdb/repl/drepl_service.c b/source4/dsdb/repl/drepl_service.c index 246309e16f..3375059e99 100644 --- a/source4/dsdb/repl/drepl_service.c +++ b/source4/dsdb/repl/drepl_service.c @@ -181,17 +181,9 @@ static void dreplsrv_task_init(struct task_server *task) } /* - initialise the dsdb replicator service - */ -static NTSTATUS dreplsrv_init(struct event_context *event_ctx, struct loadparm_context *lp_ctx, const struct model_ops *model_ops) -{ - return task_server_startup(event_ctx, lp_ctx, "drepl", model_ops, dreplsrv_task_init); -} - -/* register ourselves as a available server */ NTSTATUS server_service_drepl_init(void) { - return register_server_service("drepl", dreplsrv_init); + return register_server_service("drepl", dreplsrv_task_init); } |