summaryrefslogtreecommitdiff
path: root/source4/param
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2011-12-03 07:03:35 +0100
committerJelmer Vernooij <jelmer@samba.org>2011-12-03 08:36:30 +0100
commit05bc4de083b993e3db06fdb2a3e1198021526a71 (patch)
tree48c86581142760ca89e6c851d271367d77ae0d05 /source4/param
parentd74b3f941f5e28bf4a98dab6d4be25fbaab200b7 (diff)
downloadsamba-05bc4de083b993e3db06fdb2a3e1198021526a71.tar.gz
samba-05bc4de083b993e3db06fdb2a3e1198021526a71.tar.bz2
samba-05bc4de083b993e3db06fdb2a3e1198021526a71.zip
Revert making public of the samba-module library.
This library was tiny - containing just two public functions than were themselves trivial. The amount of overhead this causes isn't really worth the benefits of sharing the code with other projects like OpenChange. In addition, this code isn't really generically useful anyway, as it can only load from the module path set for Samba at configure time. Adding a new library was breaking the API/ABI anyway, so OpenChange had to be updated to cope with the new situation one way or another. I've added a simpler (compatible) routine for loading modules to OpenChange, which is less than 100 lines of code. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Dec 3 08:36:33 CET 2011 on sn-devel-104
Diffstat (limited to 'source4/param')
-rw-r--r--source4/param/share.c6
-rw-r--r--source4/param/wscript_build2
2 files changed, 4 insertions, 4 deletions
diff --git a/source4/param/share.c b/source4/param/share.c
index 4d2b5d3ba6..da0470d560 100644
--- a/source4/param/share.c
+++ b/source4/param/share.c
@@ -22,7 +22,7 @@
#include "includes.h"
#include "param/share.h"
#include "param/param.h"
-#include "lib/util/samba_module.h"
+#include "lib/util/samba_modules.h"
const char *share_string_option(struct share_config *scfg, const char *opt_name, const char *defval)
{
@@ -149,9 +149,9 @@ NTSTATUS share_init(void)
{
#define _MODULE_PROTO(init) extern NTSTATUS init(void);
STATIC_share_MODULES_PROTO;
- samba_module_init_fn static_init[] = { STATIC_share_MODULES };
+ init_module_fn static_init[] = { STATIC_share_MODULES };
- samba_module_init_fns_run(static_init);
+ run_init_functions(static_init);
return NT_STATUS_OK;
}
diff --git a/source4/param/wscript_build b/source4/param/wscript_build
index faeeae6e71..80b2758766 100644
--- a/source4/param/wscript_build
+++ b/source4/param/wscript_build
@@ -10,7 +10,7 @@ bld.SAMBA_SUBSYSTEM('PROVISION',
bld.SAMBA_SUBSYSTEM('share',
source='share.c',
public_headers='share.h',
- deps='samba-util samba-module'
+ deps='samba-util samba-modules'
)