diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-08-21 12:56:34 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-08-21 12:56:34 +1000 |
commit | 64293ca4afb6aa252d9e49bbcb8450a3dff04c37 (patch) | |
tree | 908167f26c946de97ded534bfd2a29ceeba0b459 | |
parent | 473540d4a5550ff857a0710f077193869ed873f8 (diff) | |
download | samba-64293ca4afb6aa252d9e49bbcb8450a3dff04c37.tar.gz samba-64293ca4afb6aa252d9e49bbcb8450a3dff04c37.tar.bz2 samba-64293ca4afb6aa252d9e49bbcb8450a3dff04c37.zip |
All these syntaxes are now handled by the schema.
(This used to be commit 94d5e69190f34d66d4defd4a7de7ce24bee77bc3)
-rw-r--r-- | source4/lib/ldb/modules/operational.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/source4/lib/ldb/modules/operational.c b/source4/lib/ldb/modules/operational.c index 7dc4ae08c3..a59e81becd 100644 --- a/source4/lib/ldb/modules/operational.c +++ b/source4/lib/ldb/modules/operational.c @@ -291,12 +291,6 @@ static int operational_init(struct ldb_module *ctx) { int ret = 0; - /* setup some standard attribute handlers */ - ret |= ldb_schema_attribute_add(ctx->ldb, "whenCreated", 0, LDB_SYNTAX_UTC_TIME); - ret |= ldb_schema_attribute_add(ctx->ldb, "whenChanged", 0, LDB_SYNTAX_UTC_TIME); - ret |= ldb_schema_attribute_add(ctx->ldb, "subschemaSubentry", 0, LDB_SYNTAX_DN); - ret |= ldb_schema_attribute_add(ctx->ldb, "structuralObjectClass", 0, LDB_SYNTAX_OBJECTCLASS); - if (ret != 0) { return ret; } |