From b7b798e15b7be2d57e20c14cca2f908b301ed894 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 24 Oct 2011 19:07:12 +1100 Subject: lib/util Rename load_samba_modules -> samba_modules_load This is to provide a cleaner namespace in the public samba plugin functions. Andrew Bartlett --- source4/smbd/process_model.c | 2 +- source4/smbd/server.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/smbd') diff --git a/source4/smbd/process_model.c b/source4/smbd/process_model.c index e9e8ffa854..6e1252c718 100644 --- a/source4/smbd/process_model.c +++ b/source4/smbd/process_model.c @@ -112,7 +112,7 @@ _PUBLIC_ NTSTATUS process_model_init(struct loadparm_context *lp_ctx) } initialised = true; - shared_init = load_samba_modules(NULL, "process_model"); + shared_init = samba_modules_load(NULL, "process_model"); samba_init_module_fns_run(static_init); samba_init_module_fns_run(shared_init); diff --git a/source4/smbd/server.c b/source4/smbd/server.c index 67d11ee35c..e925dd4e3f 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -409,7 +409,7 @@ static int binary_smbd_main(const char *binary_name, int argc, const char *argv[ process_model_init(cmdline_lp_ctx); - shared_init = load_samba_modules(NULL, "service"); + shared_init = samba_modules_load(NULL, "service"); samba_init_module_fns_run(static_init); samba_init_module_fns_run(shared_init); -- cgit