diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-09-22 18:15:24 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-09-22 18:16:09 +0200 |
commit | 1d92b2211cc507dd62526f564ec7f75a07110e00 (patch) | |
tree | b6f1cc8d975a814bfa6ae02252d8f5e190b1bab7 /source4/wrepl_server | |
parent | 31dc3629475a07dcc9900929ce943c274db36250 (diff) | |
download | samba-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/wrepl_server')
-rw-r--r-- | source4/wrepl_server/wrepl_in_connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/wrepl_server/wrepl_in_connection.c b/source4/wrepl_server/wrepl_in_connection.c index 25227481b8..ecc265e590 100644 --- a/source4/wrepl_server/wrepl_in_connection.c +++ b/source4/wrepl_server/wrepl_in_connection.c @@ -218,7 +218,7 @@ NTSTATUS wreplsrv_in_connection_merge(struct wreplsrv_partner *partner, /* within the wrepl 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(service->task->event_ctx, "single"); if (!model_ops) { DEBUG(0,("Can't find 'single' process model_ops")); return NT_STATUS_INTERNAL_ERROR; @@ -273,7 +273,7 @@ NTSTATUS wreplsrv_setup_sockets(struct wreplsrv_service *service, struct loadpar /* within the wrepl 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(task->event_ctx, "single"); if (!model_ops) { DEBUG(0,("Can't find 'single' process model_ops")); return NT_STATUS_INTERNAL_ERROR; |