Skip to content
Snippets Groups Projects
Commit cf290bfc authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#5760

parent effd682f
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@ OpenLDAP 2.4.13 Engineering
Added slapo-constraint support for relax control (ITS#5705)
Added slapo-constraint "set" type (ITS#5702)
Fixed slapo-constraint filter parsing error (ITS#5751)
Fixed slapo-rwm objectClass preservation (ITS#5760)
Fixed slapo-rwm rewriting undefined filter (ITS#5731)
Fixed slapo-rwm reusing freed filter (ITS#5732)
Added slapo-translucent try local bind when remote fails (ITS#5656)
......
......@@ -1177,7 +1177,9 @@ remove_oc:;
last--;
bv--;
} else if ( mapped.bv_val != bv[0].bv_val ) {
} else if ( mapped.bv_val != bv[0].bv_val
&& ber_bvstrcasecmp( &mapped, &bv[0] ) != 0 )
{
int i;
for ( i = 0; !BER_BVISNULL( &(*ap)->a_vals[ i ] ); i++ ) {
......
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