OID checks don't need to be case-insensitive

This commit is contained in:
Pierangelo Masarati 2005-04-10 16:01:24 +00:00
parent 3546934005
commit e94f1cd3f9

View file

@ -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;
}