mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-26 08:42:53 -05:00
suffixAlias will return a normalized uppercase DN if input is normalized
and uppercase. (aliased_dn are stored in normalized uppercase format).
This commit is contained in:
parent
0daa8c1f06
commit
0503205c93
6 changed files with 0 additions and 6 deletions
|
|
@ -169,7 +169,6 @@ do_bind(
|
|||
char *edn;
|
||||
|
||||
ndn = suffixAlias( ndn, op, be );
|
||||
dn_normalize_case( ndn );
|
||||
|
||||
if ( (*be->be_bind)( be, conn, op, ndn, method, &cred, &edn ) == 0 ) {
|
||||
pthread_mutex_lock( &conn->c_dnmutex );
|
||||
|
|
|
|||
|
|
@ -75,7 +75,6 @@ do_compare(
|
|||
|
||||
/* alias suffix if approp */
|
||||
ndn = suffixAlias( ndn, op, be );
|
||||
dn_normalize_case( ndn );
|
||||
|
||||
if ( be->be_compare != NULL ) {
|
||||
(*be->be_compare)( be, conn, op, ndn, &ava );
|
||||
|
|
|
|||
|
|
@ -62,7 +62,6 @@ do_delete(
|
|||
|
||||
/* alias suffix if approp */
|
||||
ndn = suffixAlias( ndn, op, be );
|
||||
dn_normalize_case( ndn );
|
||||
|
||||
/*
|
||||
* do the delete if 1 && (2 || 3)
|
||||
|
|
|
|||
|
|
@ -145,7 +145,6 @@ do_modify(
|
|||
|
||||
/* alias suffix if approp */
|
||||
ndn = suffixAlias ( ndn, op, be );
|
||||
(void) dn_normalize_case( ndn );
|
||||
|
||||
/*
|
||||
* do the modify if 1 && (2 || 3)
|
||||
|
|
|
|||
|
|
@ -72,7 +72,6 @@ do_modrdn(
|
|||
|
||||
/* alias suffix if approp */
|
||||
ndn = suffixAlias( ndn, op, be );
|
||||
dn_normalize_case( ndn );
|
||||
|
||||
/*
|
||||
* do the add if 1 && (2 || 3)
|
||||
|
|
|
|||
|
|
@ -143,7 +143,6 @@ do_search(
|
|||
|
||||
/* translate the base if it matches an aliased base part */
|
||||
base = suffixAlias ( base, op, be );
|
||||
(void) dn_normalize_case( base );
|
||||
|
||||
/* actually do the search and send the result(s) */
|
||||
if ( be->be_search != NULL ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue