summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-11-30 16:48:31 +1100
committerAndrew Tridgell <tridge@samba.org>2009-11-30 16:49:36 +1100
commita5e0f433de3e3890be0af64c26665daca658e4b6 (patch)
treefd973dbb88fe8abacbf7dcb6645ed0b439fc3f95
parent99ba74b75ead69019e2982a6d8f94b625e4ba7c1 (diff)
downloadsamba-a5e0f433de3e3890be0af64c26665daca658e4b6.tar.gz
samba-a5e0f433de3e3890be0af64c26665daca658e4b6.tar.bz2
samba-a5e0f433de3e3890be0af64c26665daca658e4b6.zip
s4-dsdb: don't call ldb_next_init() twice in objectclass module
-rw-r--r--source4/dsdb/samdb/ldb_modules/objectclass.c2
1 files changed, 1 insertions, 1 deletions
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 = {