mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 17:19:43 -05:00
Normalized user DN
This commit is contained in:
parent
5eaa8fc85f
commit
efaab64b69
1 changed files with 6 additions and 0 deletions
|
|
@ -98,6 +98,12 @@ ldbm_back_exop_passwd(
|
|||
goto done;
|
||||
}
|
||||
|
||||
if( dn_normalize( dn ) == NULL ) {
|
||||
*text = "Invalid DN";
|
||||
rc = LDAP_INVALID_DN;
|
||||
goto done;
|
||||
}
|
||||
|
||||
e = dn2entry_w( be, dn, NULL );
|
||||
|
||||
if( e == NULL ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue