a bit redundant, but works around ITS#3951

This commit is contained in:
Pierangelo Masarati 2005-08-18 12:14:07 +00:00
parent 11211d0dae
commit 66c173deb9

View File

@ -557,6 +557,20 @@ int ad_inlist(
continue;
}
if ( ber_bvccmp( &attrs->an_name, '*' ) ) {
if ( !is_at_operational( desc->ad_type ) ) {
return 1;
}
continue;
}
if ( ber_bvccmp( &attrs->an_name, '+' ) ) {
if ( is_at_operational( desc->ad_type ) ) {
return 1;
}
continue;
}
/*
* EXTENSION: see if requested description is @objectClass
* if so, return attributes which the class requires/allows