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
329f79f2
Commit
329f79f2
authored
Nov 10, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5785
parent
c2a0888b
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
329f79f2
...
...
@@ -9,6 +9,7 @@ OpenLDAP 2.4.13 Engineering
Added slapd keyword add_content_acl for add checks (ITS#4556,ITS#5723)
Fixed slapd config backend olcLogFile support (ITS#5765)
Fixed slapd contextCSN pending list (ITS#5709)
Fixed slapd control criticality (ITS#5785)
Added slapd dn.this search limits (ITS#5734)
Fixed slapd nameUIDPretty bitstring parsing (ITS#5750)
Fixed slapd overlay/database open with real structure (ITS#5724)
...
...
servers/slapd/controls.c
View file @
329f79f2
...
...
@@ -960,12 +960,10 @@ static int parseDontUseCopy (
return
LDAP_PROTOCOL_ERROR
;
}
if
(
!
ctrl
->
ldctl_iscritical
)
{
rs
->
sr_text
=
"dontUseCopy criticality of FALSE not allowed"
;
return
LDAP_PROTOCOL_ERROR
;
}
op
->
o_dontUseCopy
=
ctrl
->
ldctl_iscritical
?
SLAP_CONTROL_CRITICAL
:
SLAP_CONTROL_NONCRITICAL
;
op
->
o_dontUseCopy
=
SLAP_CONTROL_CRITICAL
;
return
LDAP_SUCCESS
;
}
...
...
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