summaryrefslogtreecommitdiff
path: root/source4/dsdb/samdb/ldb_modules/objectguid.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2006-08-28 03:26:17 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:16:50 -0500
commit69ecd9538fac24e20c7500096a479a7c8ff260ba (patch)
tree50069b6b74d9c302e99eab092fa8c9b33061339c /source4/dsdb/samdb/ldb_modules/objectguid.c
parentbc2e3aa3f3a84382a24a818e74a8d87e4c31f63c (diff)
downloadsamba-69ecd9538fac24e20c7500096a479a7c8ff260ba.tar.gz
samba-69ecd9538fac24e20c7500096a479a7c8ff260ba.tar.bz2
samba-69ecd9538fac24e20c7500096a479a7c8ff260ba.zip
r17870: This module (for the moment) handles the modifyTimestamp generation. For that, it needs to hook into the modify operation.
Andrew Bartlett (This used to be commit d22117a53bafa4bb72c854353620099b5a6f81d8)
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules/objectguid.c')
-rw-r--r--source4/dsdb/samdb/ldb_modules/objectguid.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/objectguid.c b/source4/dsdb/samdb/ldb_modules/objectguid.c
index ca27f17d71..7e475d1ef4 100644
--- a/source4/dsdb/samdb/ldb_modules/objectguid.c
+++ b/source4/dsdb/samdb/ldb_modules/objectguid.c
@@ -203,6 +203,7 @@ static int objectguid_modify(struct ldb_module *module, struct ldb_request *req)
static const struct ldb_module_ops objectguid_ops = {
.name = "objectguid",
.add = objectguid_add,
+ .modify = objectguid_modify,
};