Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
orbea -
OpenLDAP
Commits
35cd3edc
Commit
35cd3edc
authored
Jun 16, 1999
by
Julio Sánchez Fernández
Browse files
Fixed bogus handling of objectclass in oc_schema_check.
parent
762662cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/schema.c
View file @
35cd3edc
...
...
@@ -30,7 +30,7 @@ oc_schema_check( Entry *e )
if
(
(
aoc
=
attr_find
(
e
->
e_attrs
,
"objectclass"
))
==
NULL
)
{
Debug
(
LDAP_DEBUG_ANY
,
"No object class for entry (%s)
\n
"
,
e
->
e_dn
,
0
,
0
);
return
(
0
);
return
(
1
);
}
/* check that the entry has required attrs for each oc */
...
...
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