Skip to content
Snippets Groups Projects
Commit 66c173de authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

a bit redundant, but works around ITS#3951

parent 11211d0d
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment