From ce0ccc2a2ea820cd5d30ffd082d898fcb57431e6 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 24 Oct 2011 19:01:16 +1100 Subject: 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 --- source4/ntptr/ntptr_base.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/ntptr') diff --git a/source4/ntptr/ntptr_base.c b/source4/ntptr/ntptr_base.c index ce335c69b0..9795d1525f 100644 --- a/source4/ntptr/ntptr_base.c +++ b/source4/ntptr/ntptr_base.c @@ -76,8 +76,8 @@ NTSTATUS ntptr_init(void) 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); + samba_init_module_fns_run(static_init); + samba_init_module_fns_run(shared_init); talloc_free(shared_init); -- cgit