mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 11:39:34 -05:00
Skip over the "dn:" prefix when passing a DN to dn_normalize().
This commit is contained in:
parent
44a3160fec
commit
fac77083cc
1 changed files with 1 additions and 1 deletions
|
|
@ -224,7 +224,7 @@ int slap_sasl_getdn( Connection *conn, char *id, char **dnptr, int flags )
|
|||
}
|
||||
|
||||
if( ( flags & FLAG_GETDN_FINAL ) == 0 ) {
|
||||
dn_normalize( dn );
|
||||
dn_normalize( dn+3 );
|
||||
}
|
||||
|
||||
*dnptr = dn;
|
||||
|
|
|
|||
Loading…
Reference in a new issue