From b7b798e15b7be2d57e20c14cca2f908b301ed894 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 24 Oct 2011 19:07:12 +1100 Subject: [PATCH] lib/util Rename load_samba_modules -> samba_modules_load This is to provide a cleaner namespace in the public samba plugin functions. Andrew Bartlett --- auth/gensec/gensec_start.c | 2 +- lib/util/modules.c | 2 +- lib/util/samba_modules.h | 2 +- source4/ntptr/ntptr_base.c | 2 +- source4/ntvfs/ntvfs_base.c | 2 +- source4/ntvfs/posix/pvfs_acl.c | 2 +- source4/rpc_server/dcerpc_server.c | 2 +- source4/smbd/process_model.c | 2 +- source4/smbd/server.c | 2 +- source4/torture/torture.c | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/auth/gensec/gensec_start.c b/auth/gensec/gensec_start.c index 4454dc74f2..43125e8f1a 100644 --- a/auth/gensec/gensec_start.c +++ b/auth/gensec/gensec_start.c @@ -887,7 +887,7 @@ _PUBLIC_ NTSTATUS gensec_init(void) if (initialized) return NT_STATUS_OK; initialized = true; - shared_init = load_samba_modules(NULL, "gensec"); + shared_init = samba_modules_load(NULL, "gensec"); samba_init_module_fns_run(static_init); samba_init_module_fns_run(shared_init); diff --git a/lib/util/modules.c b/lib/util/modules.c index 34ad06c69f..e9e6bf5dc8 100644 --- a/lib/util/modules.c +++ b/lib/util/modules.c @@ -143,7 +143,7 @@ bool samba_init_module_fns_run(samba_init_module_fn *fns) * Will return an array of function pointers to initialization functions */ -samba_init_module_fn *load_samba_modules(TALLOC_CTX *mem_ctx, const char *subsystem) +samba_init_module_fn *samba_modules_load(TALLOC_CTX *mem_ctx, const char *subsystem) { char *path = modules_path(mem_ctx, subsystem); samba_init_module_fn *ret; diff --git a/lib/util/samba_modules.h b/lib/util/samba_modules.h index be025ea7c1..a3d7609cb6 100644 --- a/lib/util/samba_modules.h +++ b/lib/util/samba_modules.h @@ -51,7 +51,7 @@ bool samba_init_module_fns_run(samba_init_module_fn *fns); * * Will return an array of function pointers to initialization functions */ -samba_init_module_fn *load_samba_modules(TALLOC_CTX *mem_ctx, const char *subsystem); +samba_init_module_fn *samba_modules_load(TALLOC_CTX *mem_ctx, const char *subsystem); int smb_load_modules(const char **modules); NTSTATUS smb_probe_module(const char *subsystem, const char *module); diff --git a/source4/ntptr/ntptr_base.c b/source4/ntptr/ntptr_base.c index 9795d1525f..425a311fe5 100644 --- a/source4/ntptr/ntptr_base.c +++ b/source4/ntptr/ntptr_base.c @@ -74,7 +74,7 @@ NTSTATUS ntptr_init(void) #define _MODULE_PROTO(init) extern NTSTATUS init(void); STATIC_ntptr_MODULES_PROTO; samba_init_module_fn static_init[] = { STATIC_ntptr_MODULES }; - samba_init_module_fn *shared_init = load_samba_modules(NULL, "ntptr"); + samba_init_module_fn *shared_init = samba_modules_load(NULL, "ntptr"); samba_init_module_fns_run(static_init); samba_init_module_fns_run(shared_init); diff --git a/source4/ntvfs/ntvfs_base.c b/source4/ntvfs/ntvfs_base.c index 034536d694..fa4167e03d 100644 --- a/source4/ntvfs/ntvfs_base.c +++ b/source4/ntvfs/ntvfs_base.c @@ -236,7 +236,7 @@ NTSTATUS ntvfs_init(struct loadparm_context *lp_ctx) if (initialized) return NT_STATUS_OK; initialized = true; - shared_init = load_samba_modules(NULL, "ntvfs"); + shared_init = samba_modules_load(NULL, "ntvfs"); samba_init_module_fns_run(static_init); samba_init_module_fns_run(shared_init); diff --git a/source4/ntvfs/posix/pvfs_acl.c b/source4/ntvfs/posix/pvfs_acl.c index 3f9626ed8a..2bff4be304 100644 --- a/source4/ntvfs/posix/pvfs_acl.c +++ b/source4/ntvfs/posix/pvfs_acl.c @@ -93,7 +93,7 @@ NTSTATUS pvfs_acl_init(void) if (initialized) return NT_STATUS_OK; initialized = true; - shared_init = load_samba_modules(NULL, "pvfs_acl"); + shared_init = samba_modules_load(NULL, "pvfs_acl"); samba_init_module_fns_run(static_init); samba_init_module_fns_run(shared_init); diff --git a/source4/rpc_server/dcerpc_server.c b/source4/rpc_server/dcerpc_server.c index 6422f8fffc..63bf1c0daf 100644 --- a/source4/rpc_server/dcerpc_server.c +++ b/source4/rpc_server/dcerpc_server.c @@ -1236,7 +1236,7 @@ void dcerpc_server_init(struct loadparm_context *lp_ctx) } initialized = true; - shared_init = load_samba_modules(NULL, "dcerpc_server"); + shared_init = samba_modules_load(NULL, "dcerpc_server"); samba_init_module_fns_run(static_init); samba_init_module_fns_run(shared_init); 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); diff --git a/source4/torture/torture.c b/source4/torture/torture.c index 73208f8256..50ff4c96fc 100644 --- a/source4/torture/torture.c +++ b/source4/torture/torture.c @@ -49,7 +49,7 @@ _PUBLIC_ int torture_init(void) #define _MODULE_PROTO(init) extern NTSTATUS init(void); STATIC_smbtorture_MODULES_PROTO; samba_init_module_fn static_init[] = { STATIC_smbtorture_MODULES }; - samba_init_module_fn *shared_init = load_samba_modules(NULL, "smbtorture"); + samba_init_module_fn *shared_init = samba_modules_load(NULL, "smbtorture"); samba_init_module_fns_run(static_init); samba_init_module_fns_run(shared_init); -- 2.34.1