From dba27a3a173740dd7fe2a9d7d98c0af864aa8393 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Sun, 16 Sep 2001 22:02:50 +0000 Subject: [PATCH] Minor cleanup --- servers/slapd/oc.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/servers/slapd/oc.c b/servers/slapd/oc.c index d245e4a0d2..6fce72d924 100644 --- a/servers/slapd/oc.c +++ b/servers/slapd/oc.c @@ -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 -- 2.39.5