mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
Useronly logic was inverted, we were ignoring the whole ldap.conf,
except where we should.
This commit is contained in:
parent
02d832ed8b
commit
b9fb4c442c
1 changed files with 1 additions and 1 deletions
|
|
@ -140,7 +140,7 @@ static void openldap_ldap_init_w_conf(
|
|||
for(i=0; attrs[i].type != ATTR_NONE; i++) {
|
||||
void *p;
|
||||
|
||||
if( !userconf && !attrs[i].useronly ) {
|
||||
if( !userconf && attrs[i].useronly ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue