Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
7badd424
Commit
7badd424
authored
Sep 03, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5636
parent
1179de7a
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
7badd424
...
...
@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.12 Engineering
Fixed liblutil executables on Windows (ITS#5604)
Fixed slapd aci performance (ITS#5636)
Fixed slapd custom attribute inheritance (ITS#5642)
Fixed slapd firstComponentMatch normalization (ITS#5634)
Fixed slapd overlay control registration (ITS#5649)
...
...
servers/slapd/aci.c
View file @
7badd424
...
...
@@ -345,9 +345,12 @@ aci_list_get_rights(
continue
;
}
found
=
1
;
*
mask
|=
aci_list_get_attr_rights
(
&
perm
,
attr
,
val
);
*
mask
|=
aci_list_get_attr_rights
(
&
perm
,
&
aci_bv
[
ACI_BV_BR_ALL
],
NULL
);
if
(
*
mask
!=
ACL_PRIV_NONE
)
{
found
=
1
;
}
}
return
found
;
...
...
@@ -439,7 +442,9 @@ aci_mask(
opts
,
sdn
;
int
rc
;
ACL_INIT
(
*
grant
);
ACL_INIT
(
*
deny
);
assert
(
!
BER_BVISNULL
(
&
desc
->
ad_cname
)
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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