mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 03:29:35 -05:00
OID checks don't need to be case-insensitive
This commit is contained in:
parent
3546934005
commit
e94f1cd3f9
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue