From: Howard Chu Date: Sat, 29 Dec 2001 15:24:53 +0000 (+0000) Subject: More ava fixups X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~411 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f7c1ef439829c38799659a84cf32c88ca735391f;p=openldap More ava fixups --- diff --git a/servers/slapd/back-ldbm/filterindex.c b/servers/slapd/back-ldbm/filterindex.c index 92462a45ec..9b5db45492 100644 --- a/servers/slapd/back-ldbm/filterindex.c +++ b/servers/slapd/back-ldbm/filterindex.c @@ -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 diff --git a/servers/slapd/back-shell/compare.c b/servers/slapd/back-shell/compare.c index 95c91f576b..3bebb0d6f8 100644 --- a/servers/slapd/back-shell/compare.c +++ b/servers/slapd/back-shell/compare.c @@ -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 */