diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-24 00:10:08 -0600 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-24 01:51:06 -0600 |
commit | 9852e793bcdd04bbb40c2d03424d6fe9f1098bc0 (patch) | |
tree | 3291ba184b67e772456fb75efcd70bf3e51c930a | |
parent | be33f4c611d37ebba59ff618033dc73601339ad1 (diff) | |
download | samba-9852e793bcdd04bbb40c2d03424d6fe9f1098bc0.tar.gz samba-9852e793bcdd04bbb40c2d03424d6fe9f1098bc0.tar.bz2 samba-9852e793bcdd04bbb40c2d03424d6fe9f1098bc0.zip |
r26577: Fix the standalone ldb build.
(This used to be commit 1cf374eb3125c66844f01d013016feaf99760582)
-rw-r--r-- | source4/lib/ldb/common/ldb_modules.c | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/source4/lib/ldb/common/ldb_modules.c b/source4/lib/ldb/common/ldb_modules.c index f30206dc5b..4e70b177bc 100644 --- a/source4/lib/ldb/common/ldb_modules.c +++ b/source4/lib/ldb/common/ldb_modules.c @@ -153,17 +153,14 @@ static const struct ldb_module_ops *ldb_find_module_ops(const char *name) #endif #define STATIC_LIBLDB_MODULES \ - { \ - LDAP_INIT \ - SQLITE3_INIT \ - ldb_tdb_init, \ - ldb_operational_init, \ - ldb_rdn_name_init, \ - ldb_paged_results_init, \ - ldb_sort_init, \ - ldb_asq_init, \ - NULL \ - } + LDAP_INIT \ + SQLITE3_INIT \ + ldb_tdb_init, \ + ldb_operational_init, \ + ldb_rdn_name_init, \ + ldb_paged_results_init, \ + ldb_sort_init, \ + ldb_asq_init #endif int ldb_global_init(void) |