diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-30 11:24:15 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-30 23:49:00 +1100 |
commit | 046d38faa5e78f2bdcfcdb3b1582427c2ecc80b8 (patch) | |
tree | 3212537bdd1e74cc2153aacb229cab99e2e290db /source4/smb_server/smb_samba3.c | |
parent | 3a7814826989b2ece34b8370c77bce9727814701 (diff) | |
download | samba-046d38faa5e78f2bdcfcdb3b1582427c2ecc80b8.tar.gz samba-046d38faa5e78f2bdcfcdb3b1582427c2ecc80b8.tar.xz samba-046d38faa5e78f2bdcfcdb3b1582427c2ecc80b8.zip |
s4-smbd: don't initialise process models more than once
this also removes the event_context parameter from process model
initialisation. It isn't needed, and is confusing when a process model
init can be called from more than one place, possibly with different
event contexts.
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/smb_server/smb_samba3.c')
-rw-r--r-- | source4/smb_server/smb_samba3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smb_server/smb_samba3.c b/source4/smb_server/smb_samba3.c index 5af2ce50423..df85bcf9001 100644 --- a/source4/smb_server/smb_samba3.c +++ b/source4/smb_server/smb_samba3.c @@ -119,7 +119,7 @@ static void samba3_smb_task_init(struct task_server *task) NTSTATUS status; const struct model_ops *model_ops; - model_ops = process_model_startup(task->event_ctx, "standard"); + model_ops = process_model_startup("standard"); if (model_ops == NULL) { goto failed; |