mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-12 10:54:48 +08:00
ITS#4050 compare normalized DNs when detecting modrdn
This commit is contained in:
parent
a0f6fdb730
commit
024c4bb13f
@ -2227,10 +2227,11 @@ dn_callback(
|
|||||||
* discover if the deleteOldRdn argument applies here. It
|
* discover if the deleteOldRdn argument applies here. It
|
||||||
* would save an unnecessary Modify if we detected it, but
|
* would save an unnecessary Modify if we detected it, but
|
||||||
* that's a fair amount of trouble to compare the two attr
|
* that's a fair amount of trouble to compare the two attr
|
||||||
* lists in detail.
|
* lists in detail. (Just test normalized DN; we ignore
|
||||||
|
* insignificant changes here.)
|
||||||
*/
|
*/
|
||||||
if ( !dn_match( &rs->sr_entry->e_name,
|
if ( !dn_match( &rs->sr_entry->e_nname,
|
||||||
&dni->new_entry->e_name ) )
|
&dni->new_entry->e_nname ) )
|
||||||
{
|
{
|
||||||
dni->renamed = 1;
|
dni->renamed = 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user