summaryrefslogtreecommitdiff
path: root/source4/dsdb/samdb/ldb_modules/samba3sid.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-11-01 15:28:02 +1100
committerAndrew Tridgell <tridge@samba.org>2010-11-01 18:55:19 +1100
commit7eb2eed156c8358b5a857444651841a17651229c (patch)
treee5ce92abe829e5d016a46168c5e220b0fa7820ad /source4/dsdb/samdb/ldb_modules/samba3sid.c
parent43f7c9ca26f72141c87babe428e46e9a293c4b9c (diff)
downloadsamba-7eb2eed156c8358b5a857444651841a17651229c.tar.gz
samba-7eb2eed156c8358b5a857444651841a17651229c.tar.bz2
samba-7eb2eed156c8358b5a857444651841a17651229c.zip
s4-dsdb: convert the rest of the ldb modules to the new module type
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules/samba3sid.c')
-rw-r--r--source4/dsdb/samdb/ldb_modules/samba3sid.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/samba3sid.c b/source4/dsdb/samdb/ldb_modules/samba3sid.c
index f6db0d1948..3fb4e98268 100644
--- a/source4/dsdb/samdb/ldb_modules/samba3sid.c
+++ b/source4/dsdb/samdb/ldb_modules/samba3sid.c
@@ -192,8 +192,13 @@ static int samba3sid_add(struct ldb_module *module, struct ldb_request *req)
return ldb_next_request(module, new_req);
}
-_PUBLIC_ const struct ldb_module_ops ldb_samba3sid_module_ops = {
+static const struct ldb_module_ops ldb_samba3sid_module_ops = {
.name = "samba3sid",
.add = samba3sid_add,
};
+
+int ldb_samba3sid_module_init(const char *version)
+{
+ return ldb_register_module(&ldb_samba3sid_module_ops);
+}