diff options
-rw-r--r-- | source4/lib/ldb/tests/sample_module.c | 2 |
1 files changed, 2 insertions, 0 deletions
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) { |