diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-02-25 17:33:28 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-02-25 17:33:28 +0100 |
commit | 738fd7fd504c3412128cfae4f8f59ac4f212ae0f (patch) | |
tree | 09d0de0fc14cbd62fc2e4d275f3c59926ebbb772 /source4/lib/ldb/common | |
parent | da8acdb57c3cc7d7da025e5b8b0b5ad72b6f0767 (diff) | |
download | samba-738fd7fd504c3412128cfae4f8f59ac4f212ae0f.tar.gz samba-738fd7fd504c3412128cfae4f8f59ac4f212ae0f.tar.bz2 samba-738fd7fd504c3412128cfae4f8f59ac4f212ae0f.zip |
Fix standalone ldb build modules.
(This used to be commit 0b133a30a23757cf463ff22dff6372ae5e11d4c7)
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r-- | source4/lib/ldb/common/ldb_modules.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/lib/ldb/common/ldb_modules.c b/source4/lib/ldb/common/ldb_modules.c index a4e0b94188..af837d2965 100644 --- a/source4/lib/ldb/common/ldb_modules.c +++ b/source4/lib/ldb/common/ldb_modules.c @@ -128,11 +128,11 @@ static struct ops_list_entry { #ifndef STATIC_LIBLDB_MODULES #define STATIC_LIBLDB_MODULES \ - ldb_operational_module_ops, \ - ldb_rdn_name_module_ops, \ - ldb_paged_results_module_ops, \ - ldb_sort_module_ops, \ - ldb_asq_module_ops, \ + &ldb_operational_module_ops, \ + &ldb_rdn_name_module_ops, \ + &ldb_paged_results_module_ops, \ + &ldb_sort_module_ops, \ + &ldb_asq_module_ops, \ NULL #endif |