Skip to content
Snippets Groups Projects
Commit 0503205c authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

suffixAlias will return a normalized uppercase DN if input is normalized

and uppercase.  (aliased_dn are stored in normalized uppercase format).
parent 0daa8c1f
No related branches found
No related tags found
No related merge requests found
......@@ -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 ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment