Commit bae8af2e authored by Lawson Whitney's avatar Lawson Whitney Committed by Alexandre Julliard

Make snoop specific case insensitive.

parent b58ebef6
......@@ -113,9 +113,9 @@ int SNOOP_ShowDebugmsgSnoop(const char *dll, int ord, const char *fname) {
len2 = strlen(buf);
for(; *listitem; listitem++) {
itemlen = strlen(*listitem);
if((itemlen == len && !strncmp(*listitem, buf, len)) ||
(itemlen == len2 && !strncmp(*listitem, buf, len2)) ||
!strcmp(*listitem, fname)) {
if((itemlen == len && !strncasecmp(*listitem, buf, len)) ||
(itemlen == len2 && !strncasecmp(*listitem, buf, len2)) ||
!strcasecmp(*listitem, fname)) {
show = !show;
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment