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
6318606b
Commit
6318606b
authored
Apr 19, 2008
by
Pierangelo Masarati
Browse files
import fix to ITS#5474
parent
3bf9998d
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
6318606b
...
...
@@ -5,6 +5,7 @@ OpenLDAP 2.4.9 Engineering
Fixed libldap error message for missing close paren (ITS#5458)
Fixed libldap_r tpool pause checks (ITS#5364, #5407)
Fixed slapcat error checking (ITS#5387)
Fixed slapd abstract objectClass inheritance check (ITS#5474)
Fixed slapd add operations requiring naming attrs (ITS#5412)
Fixed slapd frontendDB backend selection (ITS#5419)
Fixed slapd delta-syncrepl resync (ITS#5378)
...
...
servers/slapd/schema_check.c
View file @
6318606b
...
...
@@ -356,8 +356,8 @@ got_soc:
}
}
if
(
xc
=
=
NULL
)
{
snprintf
(
textbuf
,
textlen
,
"instan
stan
tiation of "
if
(
xc
!
=
NULL
)
{
snprintf
(
textbuf
,
textlen
,
"instantiation of "
"abstract objectClass '%s' not allowed"
,
aoc
->
a_vals
[
i
].
bv_val
);
...
...
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