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:
Kurt Zeilenga 1999-01-19 19:29:11 +00:00
parent 0daa8c1f06
commit 0503205c93
6 changed files with 0 additions and 6 deletions

View file

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

View file

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

View file

@ -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)

View file

@ -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)

View file

@ -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)

View file

@ -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 ) {