Useronly logic was inverted, we were ignoring the whole ldap.conf,

except where we should.
This commit is contained in:
Julio Sánchez Fernández 2000-03-13 12:31:35 +00:00
parent 02d832ed8b
commit b9fb4c442c

View file

@ -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;
}