diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-02-04 17:48:51 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-02-04 17:48:51 +1100 |
commit | 23d681caf9c1186999ac676d70a1eb0e8a43e358 (patch) | |
tree | fcadf2e7606ce18623621f64d1ff175f3f3c6174 /source4/kdc/kdc.c | |
parent | cbca41597e0829ee0b1535b2902696a448373045 (diff) | |
download | samba-23d681caf9c1186999ac676d70a1eb0e8a43e358.tar.gz samba-23d681caf9c1186999ac676d70a1eb0e8a43e358.tar.xz samba-23d681caf9c1186999ac676d70a1eb0e8a43e358.zip |
Rework service init functions to pass down service name. This is
needed to change prefork behaviour based on what service is being
started.
Andrew Bartlett and David Disseldorp
(This used to be commit 0d830580e3539c96da3aa6c72fafe6eacd7a74a0)
Diffstat (limited to 'source4/kdc/kdc.c')
-rw-r--r-- | source4/kdc/kdc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/kdc/kdc.c b/source4/kdc/kdc.c index 04e7ddd2ff1..d820f0abe97 100644 --- a/source4/kdc/kdc.c +++ b/source4/kdc/kdc.c @@ -667,7 +667,7 @@ static NTSTATUS kdc_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, model_ops, kdc_task_init); + return task_server_startup(event_ctx, lp_ctx, "kdc", model_ops, kdc_task_init); } /* called at smbd startup - register ourselves as a server service */ |