diff options
Diffstat (limited to 'source4')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/subtree_rename.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/subtree_rename.c b/source4/dsdb/samdb/ldb_modules/subtree_rename.c index ef27eca395..3f030509b0 100644 --- a/source4/dsdb/samdb/ldb_modules/subtree_rename.c +++ b/source4/dsdb/samdb/ldb_modules/subtree_rename.c @@ -151,9 +151,14 @@ static int check_constraints(struct ldb_message *msg, bool move_op = false; bool rename_op = false; + /* Skip the checks if old and new DN are the same or if we relax */ + if (ldb_dn_compare(olddn, newdn) == 0) { return LDB_SUCCESS; } + if (ldb_request_get_control(ac->req, LDB_CONTROL_RELAX_OID) != NULL) { + return LDB_SUCCESS; + } /* Objects under CN=System */ |