mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
More dn_normalize -> dnNormalize changes
This commit is contained in:
parent
27f42bba62
commit
699a092967
@ -219,9 +219,12 @@ static char* get_alias_dn(
|
||||
int *err,
|
||||
const char **errmsg )
|
||||
{
|
||||
int rc;
|
||||
char *dn;
|
||||
struct berval *ndn = NULL;
|
||||
Attribute *a;
|
||||
AttributeDescription *aliasedObjectName = slap_schema.si_ad_aliasedObjectName;
|
||||
AttributeDescription *aliasedObjectName
|
||||
= slap_schema.si_ad_aliasedObjectName;
|
||||
|
||||
a = attr_find( e->e_attrs, aliasedObjectName );
|
||||
|
||||
@ -252,15 +255,15 @@ static char* get_alias_dn(
|
||||
return NULL;
|
||||
}
|
||||
|
||||
dn = ch_strdup( a->a_vals[0]->bv_val );
|
||||
|
||||
if( dn_normalize(dn) == NULL ) {
|
||||
ch_free( dn );
|
||||
rc = dnNormalize( NULL, a->a_vals[0], &ndn );
|
||||
if( rc != LDAP_SUCCESS ) {
|
||||
*err = LDAP_ALIAS_PROBLEM;
|
||||
*errmsg = "alias aliasedObjectName value is invalid";
|
||||
return NULL;
|
||||
}
|
||||
|
||||
dn = ndn->bv_val;
|
||||
free( ndn );
|
||||
return dn;
|
||||
}
|
||||
|
||||
|
@ -574,16 +574,22 @@ cache_find_entry_dn2id(
|
||||
const char *dn
|
||||
)
|
||||
{
|
||||
char *ndn;
|
||||
ID id;
|
||||
int rc;
|
||||
struct berval bv;
|
||||
struct berval *ndn = NULL;
|
||||
ID id;
|
||||
|
||||
ndn = ch_strdup( dn );
|
||||
(void) dn_normalize( ndn );
|
||||
bv.bv_val = dn;
|
||||
bv.bv_len = strlen( dn );
|
||||
|
||||
id = cache_find_entry_ndn2id( be, cache, ndn );
|
||||
rc = dnNormalize( NULL, &bv, &ndn );
|
||||
if( rc != LDAP_SUCCESS ) {
|
||||
return NOID;
|
||||
}
|
||||
|
||||
free( ndn );
|
||||
id = cache_find_entry_ndn2id( be, cache, ndn->bv_val );
|
||||
|
||||
ber_bvfree( ndn );
|
||||
return ( id );
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user