mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 02:59:34 -05:00
Remove debugging assert committed by mistake
This commit is contained in:
parent
4540262cf5
commit
3019e9d525
1 changed files with 2 additions and 4 deletions
|
|
@ -52,8 +52,6 @@ entry_schema_check(
|
|||
if ( (aoc = attr_find( e->e_attrs, ad_objectClass )) == NULL ) {
|
||||
Debug( LDAP_DEBUG_ANY, "No object class for entry (%s)\n",
|
||||
e->e_dn, 0, 0 );
|
||||
assert(0);
|
||||
|
||||
*text = "no objectclass attribute";
|
||||
return oldattrs != NULL
|
||||
? LDAP_OBJECT_CLASS_VIOLATION
|
||||
|
|
@ -66,8 +64,8 @@ entry_schema_check(
|
|||
for ( i = 0; aoc->a_vals[i] != NULL; i++ ) {
|
||||
if ( (oc = oc_find( aoc->a_vals[i]->bv_val )) == NULL ) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"Objectclass \"%s\" not defined\n",
|
||||
aoc->a_vals[i]->bv_val, 0, 0 );
|
||||
"entry_check_schema(%s): objectclass \"%s\" not defined\n",
|
||||
e->e_dn, aoc->a_vals[i]->bv_val, 0 );
|
||||
|
||||
} else {
|
||||
char *s = oc_check_required( e, aoc->a_vals[i] );
|
||||
|
|
|
|||
Loading…
Reference in a new issue