mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
a bit redundant, but works around ITS#3951
This commit is contained in:
parent
11211d0dae
commit
66c173deb9
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user