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
3ca683cb
Commit
3ca683cb
authored
Jun 27, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6179
parent
d44ad2d3
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
3ca683cb
...
@@ -10,6 +10,7 @@ OpenLDAP 2.4.17 Engineering
...
@@ -10,6 +10,7 @@ OpenLDAP 2.4.17 Engineering
Added slapd schema checking tool (ITS#6150)
Added slapd schema checking tool (ITS#6150)
Added slapd writetimeout keyword (ITS#5836)
Added slapd writetimeout keyword (ITS#5836)
Fixed slapd abandon/cancel handling for some ops (ITS#6157)
Fixed slapd abandon/cancel handling for some ops (ITS#6157)
Fixed slapd access setstyle to expand (ITS#6179)
Fixed slapd assert with closing connections (ITS#6111)
Fixed slapd assert with closing connections (ITS#6111)
Fixed slapd cancel behavior (ITS#6137)
Fixed slapd cancel behavior (ITS#6137)
Fixed slapd cert validation (ITS#6098)
Fixed slapd cert validation (ITS#6098)
...
@@ -64,6 +65,7 @@ OpenLDAP 2.4.17 Engineering
...
@@ -64,6 +65,7 @@ OpenLDAP 2.4.17 Engineering
ldapwhoami(1) note -e option (ITS#6107)
ldapwhoami(1) note -e option (ITS#6107)
ldap_result(3) Add RETURN VALUE heading (ITS#6180)
ldap_result(3) Add RETURN VALUE heading (ITS#6180)
ldap.conf(5) improve sizelimit/timelimit limits (ITS#6127)
ldap.conf(5) improve sizelimit/timelimit limits (ITS#6127)
slapd.access(5) Fix <setstyle> to use expand (ITS#6179)
slapd.conf(5) pidfile/argsfile description fix (ITS#5975)
slapd.conf(5) pidfile/argsfile description fix (ITS#5975)
slapd-config(5) pidfile/argsfile description fix (ITS#5975)
slapd-config(5) pidfile/argsfile description fix (ITS#5975)
slapo-constraint(5) clarify URI example (ITS#6118)
slapo-constraint(5) clarify URI example (ITS#6118)
...
...
doc/man/man5/slapd.access.5
View file @
3ca683cb
...
@@ -310,7 +310,7 @@ with
...
@@ -310,7 +310,7 @@ with
<groupstyle>={exact|expand}
<groupstyle>={exact|expand}
<peernamestyle>={<style>|ip|ipv6|path}
<peernamestyle>={<style>|ip|ipv6|path}
<domainstyle>={exact|regex|sub(tree)}
<domainstyle>={exact|regex|sub(tree)}
<setstyle>={exact|
regex
}
<setstyle>={exact|
expand
}
<modifier>={expand}
<modifier>={expand}
<name>=aci <pattern>=<attrname>]
<name>=aci <pattern>=<attrname>]
.fi
.fi
...
...
servers/slapd/aclparse.c
View file @
3ca683cb
...
@@ -851,16 +851,6 @@ parse_acl(
...
@@ -851,16 +851,6 @@ parse_acl(
}
}
}
}
/* expand in <who> needs regex in <what> */
if
(
(
sty
==
ACL_STYLE_EXPAND
||
expand
)
&&
a
->
acl_dn_style
!=
ACL_STYLE_REGEX
)
{
Debug
(
LDAP_DEBUG_CONFIG
|
LDAP_DEBUG_ACL
,
"%s: line %d:
\"
expand
\"
style "
"or modifier used in conjunction with a non-regex <what> clause.
\n
"
,
fname
,
lineno
,
0
);
goto
fail
;
}
if
(
strncasecmp
(
left
,
"real"
,
STRLENOF
(
"real"
)
)
==
0
)
{
if
(
strncasecmp
(
left
,
"real"
,
STRLENOF
(
"real"
)
)
==
0
)
{
is_realdn
=
1
;
is_realdn
=
1
;
bdn
=
&
b
->
a_realdn
;
bdn
=
&
b
->
a_realdn
;
...
...
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