mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
fix suffix alias compare in config.c, logic was reversed. The suffix alias
is now ignored if it is the same as the real suffix.
This commit is contained in:
parent
bd6dfe333d
commit
07f566e712
1 changed files with 1 additions and 1 deletions
|
|
@ -189,7 +189,7 @@ read_config( char *fname, Backend **bep, FILE *pfp )
|
|||
(void) dn_normalize( aliased_dn );
|
||||
|
||||
|
||||
if ( strcasecmp( alias, aliased_dn) ) {
|
||||
if ( strcasecmp( alias, aliased_dn) == 0 ) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"%s: line %d: suffixAlias %s is not different from aliased dn (ignored)\n",
|
||||
fname, lineno, alias );
|
||||
|
|
|
|||
Loading…
Reference in a new issue