mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 02:59:34 -05:00
Fix prev commit
This commit is contained in:
parent
78ea542572
commit
a2dc5dd494
1 changed files with 2 additions and 1 deletions
|
|
@ -1170,13 +1170,14 @@ simple_vrFilter2bv( Operation *op, ValuesReturnFilter *vrf, struct berval *fstr
|
|||
{
|
||||
struct berval tmp;
|
||||
ber_len_t len;
|
||||
int undef;
|
||||
|
||||
if ( vrf == NULL ) {
|
||||
ber_str2bv_x( "No filter!", STRLENOF("No filter!"), 1, fstr,
|
||||
op->o_tmpmemctx );
|
||||
return;
|
||||
}
|
||||
int undef = vrf->vrf_choice & SLAPD_FILTER_UNDEFINED;
|
||||
undef = vrf->vrf_choice & SLAPD_FILTER_UNDEFINED;
|
||||
|
||||
switch ( vrf->vrf_choice & SLAPD_FILTER_MASK ) {
|
||||
case LDAP_FILTER_EQUALITY:
|
||||
|
|
|
|||
Loading…
Reference in a new issue