]> git.sur5r.net Git - openldap/commitdiff
Fix last commit
authorKurt Zeilenga <kurt@openldap.org>
Wed, 16 Jan 2002 05:44:21 +0000 (05:44 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 16 Jan 2002 05:44:21 +0000 (05:44 +0000)
servers/slapd/proto-slap.h

index c05dbb21c1ee3e771a892944695dcd3085cd92fa..ba1700210b535877dfcfb38efebc4208da2b6c21 100644 (file)
@@ -57,9 +57,8 @@ LDAP_SLAPD_F (AttributeDescription *) ad_dup LDAP_P((
 
 LDAP_SLAPD_F (void) ad_destroy LDAP_P(( AttributeDescription * ));
 
-#define ad_cmp(l,r)    (((l)->ad_cname.bv_len < (r)->ad_cname.bv_len) \
-       ? strcasecmp((l)->ad_cname.bv_val, (r)->ad_cname.bv_val ) \
-       : ((l)->ad_cname.bv_len - (r)->ad_cname.bv_len ))
+#define ad_cmp(l,r)    (((l)->ad_cname.bv_len == (r)->ad_cname.bv_len) \
+       ? strcasecmp((l)->ad_cname.bv_val, (r)->ad_cname.bv_val ) : 1 )
 
 LDAP_SLAPD_F (int) is_ad_subtype LDAP_P((
        AttributeDescription *sub,