mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 14:10:39 -05:00
More ava fixups
This commit is contained in:
parent
7b8c4c3b50
commit
f7c1ef4398
2 changed files with 3 additions and 3 deletions
|
|
@ -95,7 +95,7 @@ filter_candidates(
|
|||
LDAP_LOG(( "filter", LDAP_LEVEL_DETAIL1,
|
||||
"filter_candidates: EQUALITY (%s),(%s)\n",
|
||||
f->f_ava->aa_desc->ad_cname.bv_val,
|
||||
f->f_ava->aa_value->bv_val ));
|
||||
f->f_ava->aa_value.bv_val ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_FILTER, "\tEQUALITY\n", 0, 0, 0 );
|
||||
#endif
|
||||
|
|
@ -108,7 +108,7 @@ filter_candidates(
|
|||
LDAP_LOG(( "filter", LDAP_LEVEL_DETAIL1,
|
||||
"filter_candidates: APPROX (%s), (%s)\n",
|
||||
f->f_ava->aa_desc->ad_cname.bv_val,
|
||||
f->f_ava->aa_value->bv_val ));
|
||||
f->f_ava->aa_value.bv_val ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_FILTER, "\tAPPROX\n", 0, 0, 0 );
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ shell_back_compare(
|
|||
fprintf( wfp, "dn: %s\n", dn->bv_val );
|
||||
fprintf( wfp, "%s: %s\n",
|
||||
ava->aa_desc->ad_cname.bv_val,
|
||||
ava->aa_value->bv_val /* could be binary! */ );
|
||||
ava->aa_value.bv_val /* could be binary! */ );
|
||||
fclose( wfp );
|
||||
|
||||
/* read in the result and send it along */
|
||||
|
|
|
|||
Loading…
Reference in a new issue