summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/tests/sample_module.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/ldb/tests/sample_module.c')
-rw-r--r--source4/lib/ldb/tests/sample_module.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/source4/lib/ldb/tests/sample_module.c b/source4/lib/ldb/tests/sample_module.c
index 8ab1d33146..98d8e865dd 100644
--- a/source4/lib/ldb/tests/sample_module.c
+++ b/source4/lib/ldb/tests/sample_module.c
@@ -32,12 +32,7 @@ int sample_add(struct ldb_module *mod, struct ldb_request *req)
return ldb_next_request(mod, req);
}
-static const struct ldb_module_ops sample_ops = {
- .name = "sample_module",
+_PUBLIC_ const struct ldb_module_ops ldb_sample_module_ops = {
+ .name = "sample",
.add = sample_add,
};
-
-int init_module(void)
-{
- return ldb_register_module(&sample_ops);
-}