1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

s4-dsdb: register the DCPROMO_OID control with the rootdse

this is needed to allow it over ldap

Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Tue Oct 19 04:44:23 UTC 2010 on sn-devel-104
This commit is contained in:
Andrew Tridgell 2010-10-19 14:53:14 +11:00
parent 75d57dbc25
commit 640fbf833b

View File

@ -1498,6 +1498,13 @@ 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));
ret = ldb_mod_register_control(module, LDB_CONTROL_RODC_DCPROMO_OID);
if (ret != LDB_SUCCESS) {
ldb_debug(ldb, LDB_DEBUG_ERROR,
"objectclass_init: Unable to register control DCPROMO with rootdse\n");
return ldb_operr(ldb);
}
return ret;
}