vrFilter -> o_vrFilter

This commit is contained in:
Kurt Zeilenga 2003-06-10 03:32:33 +00:00
parent c249f3ac21
commit 0b3f6e364c
2 changed files with 5 additions and 5 deletions

View File

@ -67,7 +67,7 @@ filter_matched_values(
Debug( LDAP_DEBUG_FILTER, "=> filter_matched_values\n", 0, 0, 0 );
#endif
for ( vrf = op->vrFilter; vrf != NULL; vrf = vrf->vrf_next ) {
for ( vrf = op->o_vrFilter; vrf != NULL; vrf = vrf->vrf_next ) {
switch ( vrf->vrf_choice ) {
case SLAPD_FILTER_COMPUTED:
#ifdef NEW_LOGGING

View File

@ -698,7 +698,7 @@ slap_send_search_entry( Operation *op, SlapReply *rs )
* to particular value of attribute and equals 1 if value matches
* to ValuesReturnFilter or 0 if not
*/
if ( op->vrFilter != NULL ) {
if ( op->o_vrFilter != NULL ) {
int k = 0;
size_t size;
@ -827,7 +827,7 @@ slap_send_search_entry( Operation *op, SlapReply *rs )
continue;
}
if ( op->vrFilter && e_flags[j][i] == 0 ){
if ( op->o_vrFilter && e_flags[j][i] == 0 ){
continue;
}
@ -873,7 +873,7 @@ slap_send_search_entry( Operation *op, SlapReply *rs )
/* only have subschemaSubentry implemented */
aa = backend_operational( op, rs, opattrs );
if ( aa != NULL && op->vrFilter != NULL ) {
if ( aa != NULL && op->o_vrFilter != NULL ) {
int k = 0;
size_t size;
@ -1020,7 +1020,7 @@ slap_send_search_entry( Operation *op, SlapReply *rs )
continue;
}
if ( op->vrFilter && e_flags[j][i] == 0 ){
if ( op->o_vrFilter && e_flags[j][i] == 0 ){
continue;
}