mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-02 20:10:11 -05:00
ITS#10329 slapo-pcache: template match must be case insensitive
This commit is contained in:
parent
5359362de0
commit
9ae2539170
1 changed files with 1 additions and 1 deletions
|
|
@ -792,7 +792,7 @@ url2query(
|
|||
qt = qm->attr_sets[attrset].templates;
|
||||
for ( ; qt; qt = qt->qtnext ) {
|
||||
/* find if template i can potentially answer tempstr */
|
||||
if ( bvmatch( &qt->querystr, &tempstr ) ) {
|
||||
if ( ber_bvstrcasecmp( &qt->querystr, &tempstr ) ) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue