249c4b1aadf33329c352c4127b2bffa62faaf039 jcasper Wed Jan 28 00:58:52 2026 -0800 Added hash function to see if any keys match a wildcard value, refs #36320 diff --git src/lib/hash.c src/lib/hash.c index c65f836e3e1..5b3280f1be9 100644 --- src/lib/hash.c +++ src/lib/hash.c @@ -836,16 +836,32 @@ for (i=0; inext) + { + if (wildMatch(wildcard, el->name)) + { + hashElFreeList(&elList); + return TRUE; + } + } +hashElFreeList(&elList); +return FALSE; +}