summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/modules/skel.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/ldb/modules/skel.c')
-rw-r--r--source4/lib/ldb/modules/skel.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/source4/lib/ldb/modules/skel.c b/source4/lib/ldb/modules/skel.c
index 331a2de5e4..3581969c18 100644
--- a/source4/lib/ldb/modules/skel.c
+++ b/source4/lib/ldb/modules/skel.c
@@ -80,6 +80,18 @@ static int skel_rename_record(struct ldb_module *module, const char *olddn, cons
return ldb_next_rename_record(module, olddn, newdn);
}
+/* named_lock */
+static const char *skel_named_lock(struct ldb_module *module, const char *lockname)
+{
+ return ldb_next_named_lock(module, lockname);
+}
+
+/* named_unlock */
+static const char *skel_named_unlock(struct ldb_module *module, const char *lockname)
+{
+ return ldb_next_named_unlock(module, lockname);
+}
+
/* return extended error information */
static const char *skel_errstring(struct ldb_module *module)
{
@@ -100,6 +112,8 @@ static const struct ldb_module_ops skel_ops = {
skel_modify_record,
skel_delete_record,
skel_rename_record,
+ skel_named_lock,
+ skel_named_unlock,
skel_errstring,
skel_cache_free
};