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 /lib/util | |
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 'lib/util')
-rw-r--r-- | lib/util/modules.c | 2 | ||||
-rw-r--r-- | lib/util/samba_modules.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/modules.c b/lib/util/modules.c index a597191c93..34ad06c69f 100644 --- a/lib/util/modules.c +++ b/lib/util/modules.c @@ -124,7 +124,7 @@ static samba_init_module_fn *load_modules(TALLOC_CTX *mem_ctx, const char *path) * * @return true if all functions ran successfully, false otherwise */ -bool run_init_functions(samba_init_module_fn *fns) +bool samba_init_module_fns_run(samba_init_module_fn *fns) { int i; bool ret = true; diff --git a/lib/util/samba_modules.h b/lib/util/samba_modules.h index 5b912b3987..be025ea7c1 100644 --- a/lib/util/samba_modules.h +++ b/lib/util/samba_modules.h @@ -44,7 +44,7 @@ samba_init_module_fn load_module(const char *path, bool is_probe, void **handle) * * @return true if all functions ran successfully, false otherwise */ -bool run_init_functions(samba_init_module_fn *fns); +bool samba_init_module_fns_run(samba_init_module_fn *fns); /** * Load the initialization functions from DSO files for a specific subsystem. |