diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-10-24 19:01:16 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-10-28 13:10:28 +0200 |
commit | ce0ccc2a2ea820cd5d30ffd082d898fcb57431e6 (patch) | |
tree | fc366d2f1e190d0698960d9c1a176fa8e040f136 /source4/smbd | |
parent | 1935b7b6c223542c1807e275c44e6ba4b2e90b68 (diff) | |
download | samba-ce0ccc2a2ea820cd5d30ffd082d898fcb57431e6.tar.gz samba-ce0ccc2a2ea820cd5d30ffd082d898fcb57431e6.tar.bz2 samba-ce0ccc2a2ea820cd5d30ffd082d898fcb57431e6.zip |
lib/util Rename run_init_functions -> samba_init_module_fns_run
This is to provide a cleaner namespace in the public samba plugin
functions.
Andrew Bartlett
Diffstat (limited to 'source4/smbd')
-rw-r--r-- | source4/smbd/process_model.c | 4 | ||||
-rw-r--r-- | source4/smbd/server.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source4/smbd/process_model.c b/source4/smbd/process_model.c index 8080787a12..e9e8ffa854 100644 --- a/source4/smbd/process_model.c +++ b/source4/smbd/process_model.c @@ -114,8 +114,8 @@ _PUBLIC_ NTSTATUS process_model_init(struct loadparm_context *lp_ctx) shared_init = load_samba_modules(NULL, "process_model"); - run_init_functions(static_init); - run_init_functions(shared_init); + samba_init_module_fns_run(static_init); + samba_init_module_fns_run(shared_init); talloc_free(shared_init); diff --git a/source4/smbd/server.c b/source4/smbd/server.c index c6b9900c0e..67d11ee35c 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -411,8 +411,8 @@ static int binary_smbd_main(const char *binary_name, int argc, const char *argv[ shared_init = load_samba_modules(NULL, "service"); - run_init_functions(static_init); - run_init_functions(shared_init); + samba_init_module_fns_run(static_init); + samba_init_module_fns_run(shared_init); talloc_free(shared_init); |