diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-10-04 10:25:46 -0700 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-10-06 14:16:30 -0700 |
commit | c0240d78351e489c5aca7e729aac045157080088 (patch) | |
tree | 3974acf8ff647249749dd67a297808f63ab073d3 | |
parent | 7d9f18609b25463d306c0c150fe0da7f065860fd (diff) | |
download | samba-c0240d78351e489c5aca7e729aac045157080088.tar.gz samba-c0240d78351e489c5aca7e729aac045157080088.tar.bz2 samba-c0240d78351e489c5aca7e729aac045157080088.zip |
Remove compleatly bogus rename test in partitions module.
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/partition.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/partition.c b/source4/dsdb/samdb/ldb_modules/partition.c index 8e4483a78e..b452b66d56 100644 --- a/source4/dsdb/samdb/ldb_modules/partition.c +++ b/source4/dsdb/samdb/ldb_modules/partition.c @@ -589,7 +589,6 @@ static int partition_delete(struct ldb_module *module, struct ldb_request *req) /* rename */ static int partition_rename(struct ldb_module *module, struct ldb_request *req) { - int i, matched = -1; /* Find backend */ struct dsdb_control_current_partition *backend, *backend2; @@ -619,22 +618,6 @@ static int partition_rename(struct ldb_module *module, struct ldb_request *req) return LDB_ERR_AFFECTS_MULTIPLE_DSAS; } - for (i=0; data && data->partitions && data->partitions[i]; i++) { - if (ldb_dn_compare_base(data->partitions[i]->dn, req->op.rename.olddn) == 0) { - matched = i; - } - } - - if (matched > 0) { - ldb_asprintf_errstring(module->ldb, - "Cannot rename from %s to %s, subtree rename would cross partition %s: %s", - ldb_dn_get_linearized(req->op.rename.olddn), - ldb_dn_get_linearized(req->op.rename.newdn), - ldb_dn_get_linearized(data->partitions[matched]->dn), - ldb_strerror(LDB_ERR_AFFECTS_MULTIPLE_DSAS)); - return LDB_ERR_AFFECTS_MULTIPLE_DSAS; - } - return partition_replicate(module, req, req->op.rename.olddn); } |