mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
Fix udev rules printing
The blacklisted devices weren't correctly checked for past the first item, as we weren't using the right index to get the product ID from the ID table.
This commit is contained in:
@@ -52,7 +52,7 @@ static void print_driver (struct fp_driver *driver)
|
||||
blacklist = 0;
|
||||
for (j = 0; blacklist_id_table[j].vendor != 0; j++) {
|
||||
if (driver->id_table[i].vendor == blacklist_id_table[j].vendor &&
|
||||
driver->id_table[j].product == blacklist_id_table[j].product) {
|
||||
driver->id_table[i].product == blacklist_id_table[j].product) {
|
||||
blacklist = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user