From a5e0f433de3e3890be0af64c26665daca658e4b6 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 30 Nov 2009 16:48:31 +1100 Subject: s4-dsdb: don't call ldb_next_init() twice in objectclass module --- source4/dsdb/samdb/ldb_modules/objectclass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/dsdb/samdb/ldb_modules/objectclass.c b/source4/dsdb/samdb/ldb_modules/objectclass.c index 82b8835b0b..c47e3608ab 100644 --- a/source4/dsdb/samdb/ldb_modules/objectclass.c +++ b/source4/dsdb/samdb/ldb_modules/objectclass.c @@ -1150,7 +1150,7 @@ static int objectclass_init(struct ldb_module *module) /* Look for the opaque to indicate we might have to cut down the DN of defaultObjectCategory */ ldb_module_set_private(module, ldb_get_opaque(ldb, DSDB_EXTENDED_DN_STORE_FORMAT_OPAQUE_NAME)); - return ldb_next_init(module); + return ret; } _PUBLIC_ const struct ldb_module_ops ldb_objectclass_module_ops = { -- cgit