mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 17:49:59 -05:00
fix typo in comment
This commit is contained in:
parent
890a3cc3bb
commit
8a8ed19a44
1 changed files with 1 additions and 3 deletions
|
|
@ -24,7 +24,7 @@ static slap_mask_t index_mask(
|
|||
AttributeType *at;
|
||||
slap_mask_t mask = 0;
|
||||
|
||||
/* we do support indexing of binary attributes */
|
||||
/* we do not support indexing of binary attributes */
|
||||
if( slap_ad_is_binary( desc ) ) return 0;
|
||||
|
||||
attr_mask( be->be_private, desc->ad_cname->bv_val, &mask );
|
||||
|
|
@ -318,12 +318,10 @@ index_entry(
|
|||
Attribute *ap
|
||||
)
|
||||
{
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE, "=> index_entry_%s( %ld, \"%s\" )\n",
|
||||
op == SLAP_INDEX_ADD_OP ? "add" : "del",
|
||||
e->e_id, e->e_dn );
|
||||
|
||||
|
||||
/* add each attribute to the indexes */
|
||||
for ( ; ap != NULL; ap = ap->a_next ) {
|
||||
index_values( be, ap->a_desc, ap->a_vals, e->e_id, op );
|
||||
|
|
|
|||
Loading…
Reference in a new issue