Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
4d46b8b7
Commit
4d46b8b7
authored
May 12, 2006
by
Ralf Haferkamp
Browse files
Additional fix for ITS#4522. The "dn=" ist not optional.
parent
4d85c307
Changes
2
Hide whitespace changes
Inline
Side-by-side
doc/man/man5/slapd.access.5
View file @
4d46b8b7
...
...
@@ -124,7 +124,7 @@ specifies the entity the access control directive applies to.
It can have the forms
.LP
.nf
[
dn[.<dnstyle>]=
]
<dnpattern>
dn[.<dnstyle>]=<dnpattern>
filter=<ldapfilter>
attrs=<attrlist>[ val[/matchingRule][.<attrstyle>]=<attrval>]
.fi
...
...
@@ -142,9 +142,6 @@ with
The statement
.B dn=<dnpattern>
selects the entries based on their naming context.
The
.B dn=
part is optional.
The
.B <dnpattern>
is a string representation of the entry's DN.
...
...
@@ -156,11 +153,7 @@ form is given.
.LP
The
.B <dnstyle>
is also optional; however, it is recommended to specify both the
.B dn=
and the
.B <dnstyle>
to avoid ambiguities.
is optional; however, it is recommended to specify it to avoid ambiguities.
.B Base
(synonym of
.BR baseObject ),
...
...
servers/slapd/aclparse.c
View file @
4d46b8b7
...
...
@@ -2192,9 +2192,9 @@ acl_usage( void )
{
char
*
access
=
"<access clause> ::= access to <what> "
"[ by <who> <access> [ <control> ] ]+
\n
"
;
"[ by <who>
[
<access>
]
[ <control> ] ]+
\n
"
;
char
*
what
=
"<what> ::= * |
[
dn[.<dnstyle>
]
=<DN>] [filter=<filter>] [attrs=<attrspec>]
\n
"
"<what> ::= * | dn[.<dnstyle>=<DN>] [filter=<filter>] [attrs=<attrspec>]
\n
"
"<attrspec> ::= <attrname> [val[/<matchingRule>][.<attrstyle>]=<value>] | <attrlist>
\n
"
"<attrlist> ::= <attr> [ , <attrlist> ]
\n
"
"<attr> ::= <attrname> | @<objectClass> | !<objectClass> | entry | children
\n
"
;
...
...
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