mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
Fix last commit
This commit is contained in:
parent
20af643fc4
commit
21c8846e64
@ -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 New Issue
Block a user