summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common/ldb_modules.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-12-21 21:03:11 +1100
committerAndrew Tridgell <tridge@samba.org>2010-01-02 08:16:51 +1100
commite1ffcfc7832768429e2f84ae048476ac0ff8dbba (patch)
treecc890d13b66e9e3ce98e234074c545dd55c3cc04 /source4/lib/ldb/common/ldb_modules.c
parentdd33a22f1de513277ed1182f70eb81f16eaab543 (diff)
downloadsamba-e1ffcfc7832768429e2f84ae048476ac0ff8dbba.tar.gz
samba-e1ffcfc7832768429e2f84ae048476ac0ff8dbba.tar.bz2
samba-e1ffcfc7832768429e2f84ae048476ac0ff8dbba.zip
s4-ldb: added ldb_module_get_ops()
This is needed to support DSDB_FLAG_OWN_MODULE Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/lib/ldb/common/ldb_modules.c')
-rw-r--r--source4/lib/ldb/common/ldb_modules.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/lib/ldb/common/ldb_modules.c b/source4/lib/ldb/common/ldb_modules.c
index e79f072d50..e49d46a987 100644
--- a/source4/lib/ldb/common/ldb_modules.c
+++ b/source4/lib/ldb/common/ldb_modules.c
@@ -527,6 +527,11 @@ struct ldb_context *ldb_module_get_ctx(struct ldb_module *module)
return module->ldb;
}
+const struct ldb_module_ops *ldb_module_get_ops(struct ldb_module *module)
+{
+ return module->ops;
+}
+
void *ldb_module_get_private(struct ldb_module *module)
{
return module->private_data;