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
196f9866
Commit
196f9866
authored
Apr 16, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6520
parent
e493e436
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
196f9866
...
...
@@ -8,6 +8,7 @@ OpenLDAP 2.4.22 Engineering
Fixed libldap GnuTLS serial length (ITS#6460)
Fixed libldap MozNSS context and PEM support (ITS#6432)
Fixed slapd acl non-entry internal searches (ITS#6481)
Fixed slapd acl attrval style initialization (ITS#6520)
Fixed slapd certificateListValidate (ITS#6466)
Fixed slapd empty URI parsing (ITS#6465)
Fixed slapd glued misplaced entries (ITS#6506)
...
...
servers/slapd/aclparse.c
View file @
196f9866
...
...
@@ -344,6 +344,7 @@ parse_acl(
goto
fail
;
}
a
=
(
AccessControl
*
)
ch_calloc
(
1
,
sizeof
(
AccessControl
)
);
a
->
acl_attrval_style
=
ACL_STYLE_NONE
;
for
(
++
i
;
i
<
argc
;
i
++
)
{
if
(
strcasecmp
(
argv
[
i
],
"by"
)
==
0
)
{
i
--
;
...
...
servers/slapd/slap.h
View file @
196f9866
...
...
@@ -1285,7 +1285,9 @@ typedef enum slap_style_e {
ACL_STYLE_SELF
,
ACL_STYLE_IP
,
ACL_STYLE_IPV6
,
ACL_STYLE_PATH
ACL_STYLE_PATH
,
ACL_STYLE_NONE
}
slap_style_t
;
typedef
struct
AuthorizationInformation
{
...
...
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