Skip to content

Commit

Permalink
winebus.sys: Disable UDEV lnxev devices by default.
Browse files Browse the repository at this point in the history
Based on a patch from Simon McVittie <[email protected]>.
  • Loading branch information
aeikum authored and ivyl committed Mar 30, 2023
1 parent 6b277cd commit e69c9b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/winebus.sys/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ static NTSTATUS udev_driver_init(void)

bus_options.disable_hidraw = check_bus_option(L"DisableHidraw", 0);
if (bus_options.disable_hidraw) TRACE("UDEV hidraw devices disabled in registry\n");
bus_options.disable_input = check_bus_option(L"DisableInput", 0);
bus_options.disable_input = check_bus_option(L"DisableInput", 1);
if (bus_options.disable_input) TRACE("UDEV input devices disabled in registry\n");
bus_options.disable_udevd = check_bus_option(L"DisableUdevd", 0);
if (bus_options.disable_udevd) TRACE("UDEV udevd use disabled in registry\n");
Expand Down

0 comments on commit e69c9b1

Please sign in to comment.