mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 22:20:28 -05:00
Minor cleanup
This commit is contained in:
parent
2d5a817288
commit
dba27a3a17
1 changed files with 5 additions and 5 deletions
|
|
@ -67,9 +67,10 @@ int is_entry_objectclass(
|
|||
if( attr == NULL ) {
|
||||
/* no objectClass attribute */
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
||||
"is_entry_objectclass: dn(%s), oid (%s), no objectlcass attribute.\n",
|
||||
e->e_dn == NULL ? "" : e->e_dn, oc->soc_oclass.oc_oid ));
|
||||
LDAP_LOG(( "operation", LDAP_LEVEL_ERR, "is_entry_objectclass: "
|
||||
"dn(%s), oid (%s), no objectClass attribute.\n",
|
||||
e->e_dn == NULL ? "" : e->e_dn,
|
||||
oc->soc_oclass.oc_oid ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY, "is_entry_objectclass(\"%s\", \"%s\") "
|
||||
"no objectClass attribute\n",
|
||||
|
|
@ -77,7 +78,6 @@ int is_entry_objectclass(
|
|||
oc->soc_oclass.oc_oid, 0 );
|
||||
#endif
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -112,7 +112,7 @@ oc_index_cmp(
|
|||
assert( oir2->oir_name );
|
||||
assert( oir2->oir_oc );
|
||||
|
||||
return (strcasecmp( oir1->oir_name, oir2->oir_name ));
|
||||
return strcasecmp( oir1->oir_name, oir2->oir_name );
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Reference in a new issue