Diff between 3b912fd1b12f40a23fe8534cf10a58fe1a08d6ed and 05d94b4018282241bdeed345134101f0147322c9

Changed Files

File Additions Deletions Status
tools/hcidump.c +1 -1 modified

Full Patch

diff --git a/tools/hcidump.c b/tools/hcidump.c
index 09b2d8d..6735ed1 100644
--- a/tools/hcidump.c
+++ b/tools/hcidump.c
@@ -319,7 +319,7 @@ static void parse_filter(int argc, char **argv)
 
 	for (i = 0; i < argc; i++) {
 		for (n = 0; filters[n].name; n++) {
-			if (!strcmp(filters[n].name, argv[i])) {
+			if (!strcasecmp(filters[n].name, argv[i])) {
 				filter |= filters[n].flag;
 				break;
 			}