From 64957ce0686761acd2a2a7ec1787898d2d8238b6 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Wed, 7 Apr 2010 23:00:42 +0200 Subject: LDB:sample_module - reintroduce accidentally removed "ldb_msg_add_fmt" statement Obviously this is really needed by the "samba4.ldb" test. --- source4/lib/ldb/tests/sample_module.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/lib/ldb') diff --git a/source4/lib/ldb/tests/sample_module.c b/source4/lib/ldb/tests/sample_module.c index f48a1ee53f..5269b8f017 100644 --- a/source4/lib/ldb/tests/sample_module.c +++ b/source4/lib/ldb/tests/sample_module.c @@ -27,6 +27,8 @@ int sample_add(struct ldb_module *mod, struct ldb_request *req) { struct ldb_control *control; + ldb_msg_add_fmt(req->op.add.message, "touchedBy", "sample"); + /* check if there's a relax control */ control = ldb_request_get_control(req, LDB_CONTROL_RELAX_OID); if (control == NULL) { -- cgit