mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-19 21:32:58 -05:00
Fix last commit
This commit is contained in:
parent
20af643fc4
commit
21c8846e64
1 changed files with 2 additions and 3 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue