Skip to content
Snippets Groups Projects
Commit c67ce5f2 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

inherit controls

parent e2fe9e39
No related branches found
No related tags found
No related merge requests found
......@@ -97,10 +97,20 @@ relay_back_db_open( Backend *be )
if ( !BER_BVISNULL( &ri->ri_realsuffix ) ) {
ri->ri_bd = select_backend( &ri->ri_realsuffix, 0, 1 );
/* must be there: it was during config! */
assert( ri->ri_bd );
/* FIXME: (somehow) copy supported controls ? */
/* inherit controls */
if ( ri->ri_bd ) {
be->be_controls = ldap_charray_dup( ri->ri_bd->be_controls );
}
} else {
/* inherit all? */
if ( frontendDB->be_controls ) {
be->be_controls = ldap_charray_dup( frontendDB->be_controls );
}
}
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment