mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 13:09:42 -05:00
ITS#6822 fix back-config's default ACL when overlays are in place
This commit is contained in:
parent
e4fcc294fa
commit
c9e49778f4
1 changed files with 2 additions and 2 deletions
|
|
@ -6725,8 +6725,8 @@ config_back_db_open( BackendDB *be, ConfigReply *cr )
|
|||
/* If we have no explicitly configured ACLs, don't just use
|
||||
* the global ACLs. Explicitly deny access to everything.
|
||||
*/
|
||||
if ( !be->be_acl ) {
|
||||
parse_acl(be, "config_back_db_open", 0, 6, (char **)defacl, 0 );
|
||||
if ( !be->bd_self->be_acl ) {
|
||||
parse_acl(be->bd_self, "config_back_db_open", 0, 6, (char **)defacl, 0 );
|
||||
}
|
||||
|
||||
thrctx = ldap_pvt_thread_pool_context();
|
||||
|
|
|
|||
Loading…
Reference in a new issue