From 746194cfc4e0c119e1947f79ffc7cb50d50b9f43 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Fri, 4 Mar 2011 10:15:59 +0100 Subject: Revert "s4:objectclass LDB module - if we cannot find DN's parent then the DN itself is invalid" This is not needed anymore with the new DN checking. This reverts commit 5896b7299331aedd065397d2078c62d85bcf68f6. Reviewed by: Tridge --- source4/dsdb/samdb/ldb_modules/objectclass.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source4/dsdb') diff --git a/source4/dsdb/samdb/ldb_modules/objectclass.c b/source4/dsdb/samdb/ldb_modules/objectclass.c index b30505da02..d9015847e6 100644 --- a/source4/dsdb/samdb/ldb_modules/objectclass.c +++ b/source4/dsdb/samdb/ldb_modules/objectclass.c @@ -421,9 +421,7 @@ static int objectclass_add(struct ldb_module *module, struct ldb_request *req) /* get copy of parent DN */ parent_dn = ldb_dn_get_parent(ac, ac->req->op.add.message->dn); if (parent_dn == NULL) { - /* the DN itself might be wrong - therefore - * "ERR_INVALID_DN_SYNTAX" fits better here. */ - return LDB_ERR_INVALID_DN_SYNTAX; + return ldb_operr(ldb); } ret = ldb_build_search_req(&search_req, ldb, -- cgit