mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-01 12:39:35 -05:00
make the glue database inherit the controls of the subordinates (doesn't fix test033 though)
This commit is contained in:
parent
cd797f8089
commit
9d11324e96
1 changed files with 8 additions and 0 deletions
|
|
@ -701,7 +701,15 @@ glue_db_open (
|
|||
int i;
|
||||
|
||||
for ( i=0; i<gi->gi_nodes; i++ ) {
|
||||
int j;
|
||||
|
||||
gi->gi_n[i].gn_be = backendDB + gi->gi_n[i].gn_bx;
|
||||
|
||||
for ( j = 0; j < SLAP_MAX_CIDS; j++ ) {
|
||||
if ( gi->gi_n[i].gn_be->be_ctrls[ j ] ) {
|
||||
be->be_ctrls[ j ] = gi->gi_n[i].gn_be->be_ctrls[ j ];
|
||||
}
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue