1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-24 02:04:21 +03:00

r13969: Make these names lowercase as well (just like they are now in the buildsystem)

(This used to be commit 04c49e211fc4f80e03d9322b983bbde15baba640)
This commit is contained in:
Jelmer Vernooij 2006-03-07 17:53:28 +00:00 committed by Gerald (Jerry) Carter
parent d9c439b884
commit 0fbcfd8920
5 changed files with 5 additions and 5 deletions

View File

@ -335,7 +335,7 @@ const struct auth_critical_sizes *auth_interface_version(void)
NTSTATUS server_service_auth_init(void)
{
init_module_fn static_init[] = STATIC_AUTH_MODULES;
init_module_fn static_init[] = STATIC_auth_MODULES;
init_module_fn *shared_init = load_samba_modules(NULL, "auth");
run_init_functions(static_init);

View File

@ -1121,7 +1121,7 @@ NTSTATUS gensec_init(void)
{
static BOOL initialized = False;
init_module_fn static_init[] = STATIC_GENSEC_MODULES;
init_module_fn static_init[] = STATIC_gensec_MODULES;
init_module_fn *shared_init = load_samba_modules(NULL, "gensec");
if (initialized) return NT_STATUS_OK;

View File

@ -94,7 +94,7 @@ NTSTATUS com_init(void)
{
static BOOL initialized = False;
init_module_fn static_init[] = STATIC_COM_MODULES;
init_module_fn static_init[] = STATIC_com_MODULES;
init_module_fn *shared_init;
if (initialized) return NT_STATUS_OK;

View File

@ -73,7 +73,7 @@ static struct reg_init_function_entry *reg_find_backend_entry(const char *name)
/** Initialize the registry subsystem */
_PUBLIC_ NTSTATUS registry_init(void)
{
init_module_fn static_init[] = STATIC_REGISTRY_MODULES;
init_module_fn static_init[] = STATIC_registry_MODULES;
init_module_fn *shared_init = load_samba_modules(NULL, "registry");
run_init_functions(static_init);

View File

@ -163,7 +163,7 @@ NTSTATUS ntvfs_init_connection(struct smbsrv_request *req, enum ntvfs_type type)
NTSTATUS ntvfs_init(void)
{
init_module_fn static_init[] = STATIC_NTVFS_MODULES;
init_module_fn static_init[] = STATIC_ntvfs_MODULES;
init_module_fn *shared_init = load_samba_modules(NULL, "ntvfs");
run_init_functions(static_init);