summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/modules/asq.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-11-01 14:59:28 +1100
committerAndrew Tridgell <tridge@samba.org>2010-11-01 18:55:19 +1100
commitbe8e91d9cadf0886bf5ce4816dff4073d903965d (patch)
treeaafdcf858e1194a995e74338239b06a1ce6232aa /source4/lib/ldb/modules/asq.c
parentb887b69151808455ae19ce2e690f6fe336c44bb9 (diff)
downloadsamba-be8e91d9cadf0886bf5ce4816dff4073d903965d.tar.gz
samba-be8e91d9cadf0886bf5ce4816dff4073d903965d.tar.bz2
samba-be8e91d9cadf0886bf5ce4816dff4073d903965d.zip
s4-ldb: convert the rest of the ldb modules to the new style
Diffstat (limited to 'source4/lib/ldb/modules/asq.c')
-rw-r--r--source4/lib/ldb/modules/asq.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/lib/ldb/modules/asq.c b/source4/lib/ldb/modules/asq.c
index 6d1e88b67b..45a733bd13 100644
--- a/source4/lib/ldb/modules/asq.c
+++ b/source4/lib/ldb/modules/asq.c
@@ -400,8 +400,13 @@ static int asq_init(struct ldb_module *module)
return ldb_next_init(module);
}
-const struct ldb_module_ops ldb_asq_module_ops = {
+static const struct ldb_module_ops ldb_asq_module_ops = {
.name = "asq",
.search = asq_search,
.init_context = asq_init
};
+
+int ldb_asq_init(const char *ldb_version)
+{
+ return ldb_register_module(&ldb_asq_module_ops);
+}