More ava fixups

This commit is contained in:
Howard Chu 2001-12-29 15:24:53 +00:00
parent 7b8c4c3b50
commit f7c1ef4398
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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 */