1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

r13973: fix the build

metze
This commit is contained in:
Stefan Metzmacher 2006-03-07 18:39:52 +00:00 committed by Gerald (Jerry) Carter
parent 737b149546
commit 30af3be22b

View File

@ -138,8 +138,8 @@ static const struct ldb_module_ops *ldb_find_module_ops(const char *name)
#define SQLITE3_INIT
#endif
#ifndef STATIC_LIBLDB_MODULES
#define STATIC_LIBLDB_MODULES \
#ifndef STATIC_ldb_MODULES
#define STATIC_ldb_MODULES \
{ \
LDAP_INIT \
SQLITE3_INIT \
@ -156,7 +156,7 @@ static const struct ldb_module_ops *ldb_find_module_ops(const char *name)
int ldb_global_init(void)
{
static int (*static_init_fns[])(void) = STATIC_LIBLDB_MODULES;
static int (*static_init_fns[])(void) = STATIC_ldb_MODULES;
static int initialized = 0;
int ret = 0, i;