mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
use dn_normalize_case().
This commit is contained in:
parent
a837feacc2
commit
47d0c970d4
2 changed files with 2 additions and 2 deletions
|
|
@ -289,7 +289,7 @@ main( int argc, char **argv )
|
|||
} else {
|
||||
buf[strlen( buf ) - 1] = '\0';
|
||||
}
|
||||
(void) dn_normalize( buf );
|
||||
(void) dn_normalize_case( buf );
|
||||
if ( (tbe = select_backend( buf )) == NULL ) {
|
||||
fprintf( stderr, "unknown suffix \"%s\"\n",
|
||||
buf );
|
||||
|
|
|
|||
|
|
@ -270,7 +270,7 @@ main( int argc, char **argv )
|
|||
key );
|
||||
free( dn );
|
||||
if ( data.dptr == NULL ) {
|
||||
dn_normalize( val );
|
||||
dn_normalize_case( val );
|
||||
if ( ! be_issuffix( be,
|
||||
val ) ) {
|
||||
Debug( LDAP_DEBUG_PARSE, "no parent \"%s\" of \"%s\"\n", dn, val, 0 );
|
||||
|
|
|
|||
Loading…
Reference in a new issue