Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
fb2be190
Commit
fb2be190
authored
Feb 02, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6822
parent
76d1eeab
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
fb2be190
...
...
@@ -45,6 +45,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapd SlapReply usage (ITS#6758)
Fixed slapd acl parsing overflow (ITS#6611)
Fixed slapd acl when resuming parsing (ITS#6804)
Fixed slapd default config acls with overlays (ITS#6822)
Fixed slapd assert control (ITS#5862)
Fixed slapd assertions and debugging (ITS#6759)
Fixed slapd config leak with olcDbDirectory (ITS#6634)
...
...
servers/slapd/bconfig.c
View file @
fb2be190
...
...
@@ -6495,8 +6495,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
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment