summaryrefslogtreecommitdiffstats
path: root/src/obd2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/obd2.cpp')
-rw-r--r--src/obd2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/obd2.cpp b/src/obd2.cpp
index 96b6c083..25416cd1 100644
--- a/src/obd2.cpp
+++ b/src/obd2.cpp
@@ -55,7 +55,7 @@ bool obd2_handler_t::is_obd2_request(DiagnosticRequest* request)
bool obd2_handler_t::is_obd2_signal(const char *name)
{
- if(fnmatch("obd2.*", name, NULL) == 0)
+ if(fnmatch("obd2.*", name, FNM_CASEFOLD) == 0)
return true;
return false;
}