summaryrefslogtreecommitdiff
path: root/source4/kdc
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-09-22 18:15:24 +0200
committerStefan Metzmacher <metze@samba.org>2008-09-22 18:16:09 +0200
commit1d92b2211cc507dd62526f564ec7f75a07110e00 (patch)
treeb6f1cc8d975a814bfa6ae02252d8f5e190b1bab7 /source4/kdc
parent31dc3629475a07dcc9900929ce943c274db36250 (diff)
downloadsamba-1d92b2211cc507dd62526f564ec7f75a07110e00.tar.gz
samba-1d92b2211cc507dd62526f564ec7f75a07110e00.tar.bz2
samba-1d92b2211cc507dd62526f564ec7f75a07110e00.zip
s4: allways initialize the process model before it's used
metze
Diffstat (limited to 'source4/kdc')
-rw-r--r--source4/kdc/kdc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/kdc/kdc.c b/source4/kdc/kdc.c
index b7009b030f..307c39a43c 100644
--- a/source4/kdc/kdc.c
+++ b/source4/kdc/kdc.c
@@ -484,7 +484,7 @@ static NTSTATUS kdc_add_socket(struct kdc_server *kdc, const char *address,
/* within the kdc task we want to be a single process, so
ask for the single process model ops and pass these to the
stream_setup_socket() call. */
- model_ops = process_model_byname("single");
+ model_ops = process_model_startup(kdc->task->event_ctx, "single");
if (!model_ops) {
DEBUG(0,("Can't find 'single' process model_ops\n"));
talloc_free(kdc_socket);