summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/tests
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/tests
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/tests')
-rw-r--r--source4/lib/ldb/tests/sample_module.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/lib/ldb/tests/sample_module.c b/source4/lib/ldb/tests/sample_module.c
index 5269b8f017..d93c6de440 100644
--- a/source4/lib/ldb/tests/sample_module.c
+++ b/source4/lib/ldb/tests/sample_module.c
@@ -54,9 +54,14 @@ int sample_modify(struct ldb_module *mod, struct ldb_request *req)
}
-const struct ldb_module_ops ldb_sample_module_ops = {
+static struct ldb_module_ops ldb_sample_module_ops = {
.name = "sample",
.add = sample_add,
.del = sample_modify,
.modify = sample_modify,
};
+
+int ldb_sample_init(const char *version)
+{
+ return ldb_register_module(&ldb_sample_module_ops);
+}