summaryrefslogtreecommitdiff
path: root/source4/smbd
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-03-19 17:51:15 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:58:48 -0500
commit9565c708987fbe69b9ac981c99f6a5f239784c4a (patch)
tree6bad95b9ac3ae1a135b6fe688b263d9d70abb704 /source4/smbd
parent79f844e6a6e0b7ee862fc9ea582c8ae2da134899 (diff)
downloadsamba-9565c708987fbe69b9ac981c99f6a5f239784c4a.tar.gz
samba-9565c708987fbe69b9ac981c99f6a5f239784c4a.tar.bz2
samba-9565c708987fbe69b9ac981c99f6a5f239784c4a.zip
r14567: Make some more functions public.
(This used to be commit 8e84e6cb6b172c89072723e07f344da8f4476c1f)
Diffstat (limited to 'source4/smbd')
-rw-r--r--source4/smbd/process_model.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/smbd/process_model.c b/source4/smbd/process_model.c
index 5a01ad4fab..bfe3a67e1a 100644
--- a/source4/smbd/process_model.c
+++ b/source4/smbd/process_model.c
@@ -26,7 +26,7 @@
/*
setup the events for the chosen process model
*/
-const struct model_ops *process_model_startup(struct event_context *ev, const char *model)
+_PUBLIC_ const struct model_ops *process_model_startup(struct event_context *ev, const char *model)
{
const struct model_ops *ops;
@@ -53,7 +53,7 @@ static int num_models;
The 'name' can be later used by other backends to find the operations
structure for this backend.
*/
-NTSTATUS register_process_model(const void *_ops)
+_PUBLIC_ NTSTATUS register_process_model(const void *_ops)
{
const struct model_ops *ops = _ops;