mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Fix alias dn_in v. dn bug
This commit is contained in:
parent
45f4839578
commit
1ae21d00f1
1 changed files with 2 additions and 1 deletions
|
|
@ -43,7 +43,8 @@ Entry *deref_internal_r(
|
|||
unsigned depth;
|
||||
char **dnlist;
|
||||
|
||||
assert( ( alias != NULL && dn == NULL ) || ( alias == NULL && dn != NULL ) );
|
||||
assert( ( alias != NULL && dn_in == NULL )
|
||||
|| ( alias == NULL && dn_in != NULL ) );
|
||||
|
||||
*matched = NULL;
|
||||
*err = LDAP_SUCCESS;
|
||||
|
|
|
|||
Loading…
Reference in a new issue