diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-10-24 09:49:26 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-10-28 13:10:28 +0200 |
commit | 1935b7b6c223542c1807e275c44e6ba4b2e90b68 (patch) | |
tree | 3f3c92eb3a080d3f68761f1431176e99c4046dbb /source4/ntptr | |
parent | 7cf00e3231da1808a5ad1adf8fbc319846eacabe (diff) | |
download | samba-1935b7b6c223542c1807e275c44e6ba4b2e90b68.tar.gz samba-1935b7b6c223542c1807e275c44e6ba4b2e90b68.tar.bz2 samba-1935b7b6c223542c1807e275c44e6ba4b2e90b68.zip |
lib/util Rename init_module_fn to samba_init_module_fn
This prepares for making the samba_module.h header public again, for OpenChange.
I am keen to avoid too much API namespace pollution if we can.
Diffstat (limited to 'source4/ntptr')
-rw-r--r-- | source4/ntptr/ntptr_base.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/ntptr/ntptr_base.c b/source4/ntptr/ntptr_base.c index 3fe8960602..ce335c69b0 100644 --- a/source4/ntptr/ntptr_base.c +++ b/source4/ntptr/ntptr_base.c @@ -73,8 +73,8 @@ NTSTATUS ntptr_init(void) { #define _MODULE_PROTO(init) extern NTSTATUS init(void); STATIC_ntptr_MODULES_PROTO; - init_module_fn static_init[] = { STATIC_ntptr_MODULES }; - init_module_fn *shared_init = load_samba_modules(NULL, "ntptr"); + samba_init_module_fn static_init[] = { STATIC_ntptr_MODULES }; + samba_init_module_fn *shared_init = load_samba_modules(NULL, "ntptr"); run_init_functions(static_init); run_init_functions(shared_init); |