mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
More ava fixups
This commit is contained in:
parent
7b8c4c3b50
commit
f7c1ef4398
@ -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 New Issue
Block a user