]> git.sur5r.net Git - openldap/commitdiff
More ava fixups
authorHoward Chu <hyc@openldap.org>
Sat, 29 Dec 2001 15:24:53 +0000 (15:24 +0000)
committerHoward Chu <hyc@openldap.org>
Sat, 29 Dec 2001 15:24:53 +0000 (15:24 +0000)
servers/slapd/back-ldbm/filterindex.c
servers/slapd/back-shell/compare.c

index 92462a45ec5a1e754e6767094c4c078e3fe4adbd..9b5db4549291189ddd85d3449416734de4c75d41 100644 (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
index 95c91f576bc17aaa8eb710c280e0d21e527fcbf2..3bebb0d6f840dd3f3a1c87e21745e6fe92bb4a74 100644 (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 */