Skip to content
Snippets Groups Projects
Commit e94f1cd3 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

OID checks don't need to be case-insensitive

parent 35469340
No related branches found
No related tags found
No related merge requests found
......@@ -475,7 +475,7 @@ ldif_must_b64_encode( LDAP_CONST char *s )
for ( i = 0; !BER_BVISNULL( &must_b64_encode[i].name ); i++ ) {
if ( ber_bvstrcasecmp( &must_b64_encode[i].name, &bv ) == 0
|| ber_bvstrcasecmp( &must_b64_encode[i].oid, &bv ) == 0 )
|| ber_bvcmp( &must_b64_encode[i].oid, &bv ) == 0 )
{
return 1;
}
......
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