mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-07 15:41:24 -05:00
fix ad_cmp
This commit is contained in:
parent
2c94c7915a
commit
48d40fb6c3
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ LDAP_SLAPD_F (void) ad_destroy LDAP_P(( AttributeDescription * ));
|
|||
|
||||
#define ad_cmp(l,r) (((l)->ad_cname.bv_len < (r)->ad_cname.bv_len) \
|
||||
? -1 : (((l)->ad_cname.bv_len > (r)->ad_cname.bv_len) \
|
||||
? strcasecmp((l)->ad_cname.bv_val, (r)->ad_cname.bv_val ) : 1 ))
|
||||
? 1 : strcasecmp((l)->ad_cname.bv_val, (r)->ad_cname.bv_val )))
|
||||
|
||||
LDAP_SLAPD_F (int) is_ad_subtype LDAP_P((
|
||||
AttributeDescription *sub,
|
||||
|
|
|
|||
Loading…
Reference in a new issue