summaryrefslogtreecommitdiff
path: root/source4/smbd/process_model.c
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/smbd/process_model.c
parent31dc3629475a07dcc9900929ce943c274db36250 (diff)
downloadsamba-1d92b2211cc507dd62526f564ec7f75a07110e00.tar.gz
s4: allways initialize the process model before it's used
metze
Diffstat (limited to 'source4/smbd/process_model.c')
-rw-r--r--source4/smbd/process_model.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/smbd/process_model.c b/source4/smbd/process_model.c
index 704e6cc7a2f..d99d517d9f2 100644
--- a/source4/smbd/process_model.c
+++ b/source4/smbd/process_model.c
@@ -22,6 +22,8 @@
#include "smbd/process_model.h"
#include "param/param.h"
+static const struct model_ops *process_model_byname(const char *name);
+
/*
setup the events for the chosen process model
*/
@@ -99,7 +101,7 @@ _PUBLIC_ NTSTATUS process_model_init(struct loadparm_context *lp_ctx)
/*
return the operations structure for a named backend of the specified type
*/
-_PUBLIC_ const struct model_ops *process_model_byname(const char *name)
+static const struct model_ops *process_model_byname(const char *name)
{
int i;