summaryrefslogtreecommitdiff
path: root/synclient.c
diff options
context:
space:
mode:
Diffstat (limited to 'synclient.c')
-rw-r--r--synclient.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/synclient.c b/synclient.c
index 6197ea6..7f6da18 100644
--- a/synclient.c
+++ b/synclient.c
@@ -98,7 +98,7 @@ static void set_variables(SynapticsSHM* synshm, int argc, char* argv[], int firs
int found = 0;
*eqp = 0;
for (j = 0; params[j].name; j++) {
- if (strcmp(cmd, params[j].name) == 0) {
+ if (strcasecmp(cmd, params[j].name) == 0) {
found = 1;
break;
}