From 2dacfdf099755cc42df6c669ee7d13d0e3688c2f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 11 May 2007 09:24:41 +0000 Subject: r22789: fix loading of internal samba4 modules metze (This used to be commit f6740c8b7abdaa65c8467220bf2d14e21fe71053) --- source4/lib/ldb/common/ldb_modules.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4') diff --git a/source4/lib/ldb/common/ldb_modules.c b/source4/lib/ldb/common/ldb_modules.c index e4b666c454..788c607d4e 100644 --- a/source4/lib/ldb/common/ldb_modules.c +++ b/source4/lib/ldb/common/ldb_modules.c @@ -135,7 +135,7 @@ static const struct ldb_module_ops *ldb_find_module_ops(const char *name) return NULL; } -#ifndef STATIC_ldb_MODULES +#ifndef STATIC_LIBLDB_MODULES #ifdef HAVE_LDB_LDAP #define LDAP_INIT ldb_ldap_init, @@ -149,7 +149,7 @@ static const struct ldb_module_ops *ldb_find_module_ops(const char *name) #define SQLITE3_INIT #endif -#define STATIC_ldb_MODULES \ +#define STATIC_LIBLDB_MODULES \ { \ LDAP_INIT \ SQLITE3_INIT \ @@ -166,7 +166,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_ldb_MODULES; + static int (*static_init_fns[])(void) = STATIC_LIBLDB_MODULES; static int initialized = 0; int ret = 0, i; -- cgit