Make snoop specific case insensitive.
diff --git a/relay32/snoop.c b/relay32/snoop.c
index 8159c77..49db758 100644
--- a/relay32/snoop.c
+++ b/relay32/snoop.c
@@ -113,9 +113,9 @@
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;
}