Skip to content
Snippets Groups Projects
Commit bf5ea315 authored by Julio Sánchez Fernández's avatar Julio Sánchez Fernández
Browse files

Compares get values in the matching rule syntax (see RFC2251, 4.1.7),

so we need to tell value_find about this.
parent cb98a604
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,9 @@ bdb_compare(
{
rc = LDAP_COMPARE_FALSE;
if ( value_find( ava->aa_desc, a->a_vals, ava->aa_value ) == 0 )
if ( value_find_ex( ava->aa_desc,
SLAP_MR_VALUE_IS_IN_MR_SYNTAX,
a->a_vals, ava->aa_value ) == 0 )
{
rc = LDAP_COMPARE_TRUE;
break;
......@@ -124,4 +126,4 @@ done:
}
return rc;
}
\ No newline at end of file
}
......@@ -99,7 +99,9 @@ ldbm_back_compare(
{
rc = LDAP_COMPARE_FALSE;
if ( value_find( ava->aa_desc, a->a_vals, ava->aa_value ) == 0 )
if ( value_find_ex( ava->aa_desc,
SLAP_MR_VALUE_IS_IN_MR_SYNTAX,
a->a_vals, ava->aa_value ) == 0 )
{
rc = LDAP_COMPARE_TRUE;
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment