summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-03-07 18:39:52 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:52:33 -0500
commit812edc6b99f3733a8851f0b28369acc920cae398 (patch)
tree9aa8ea07fca72c4bd78f9b7d6c84243279ea79ab /source4/lib
parentc29b88c03aecff22f2124cd20d43ed81f0ca73f6 (diff)
downloadsamba-812edc6b99f3733a8851f0b28369acc920cae398.tar.gz
samba-812edc6b99f3733a8851f0b28369acc920cae398.tar.bz2
samba-812edc6b99f3733a8851f0b28369acc920cae398.zip
r13973: fix the build
metze (This used to be commit 30af3be22b5f9e6d106954222a3bc4bb53c76665)
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/ldb/common/ldb_modules.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/ldb/common/ldb_modules.c b/source4/lib/ldb/common/ldb_modules.c
index 5dab448a56..59cf42165b 100644
--- a/source4/lib/ldb/common/ldb_modules.c
+++ b/source4/lib/ldb/common/ldb_modules.c
@@ -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;