ITS#10329 slapo-pcache: template match must be case insensitive

This commit is contained in:
Andrew Elble 2025-04-22 13:53:35 -04:00 committed by Quanah Gibson-Mount
parent 5359362de0
commit 9ae2539170

View file

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