You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--- a/src/parse.c
|
|
+++ b/src/parse.c
|
|
@@ -289,6 +289,12 @@ int ParseCommand( char * pchCommandLine)
|
|
pchEventDevice = strdup( pchValue) ;
|
|
return 1 ;
|
|
}
|
|
+ if( (pchValue != NULL) &&
|
|
+ (strncmp( pchValue, "/dev/event", 6) == 0) )
|
|
+ {
|
|
+ pchEventDevice = strdup( pchValue) ;
|
|
+ return 1 ;
|
|
+ }
|
|
printf( "Option 'device' expects a /dev/input/eventX argument\n");
|
|
return -1 ;
|
|
}
|