mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
vrFilter -> o_vrFilter
This commit is contained in:
parent
c249f3ac21
commit
0b3f6e364c
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user