Skip to content

Commit e69c9b1

Browse files
aeikumivyl
authored andcommitted
winebus.sys: Disable UDEV lnxev devices by default.
Based on a patch from Simon McVittie <[email protected]>.
1 parent 6b277cd commit e69c9b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dlls/winebus.sys/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ static NTSTATUS udev_driver_init(void)
746746

747747
bus_options.disable_hidraw = check_bus_option(L"DisableHidraw", 0);
748748
if (bus_options.disable_hidraw) TRACE("UDEV hidraw devices disabled in registry\n");
749-
bus_options.disable_input = check_bus_option(L"DisableInput", 0);
749+
bus_options.disable_input = check_bus_option(L"DisableInput", 1);
750750
if (bus_options.disable_input) TRACE("UDEV input devices disabled in registry\n");
751751
bus_options.disable_udevd = check_bus_option(L"DisableUdevd", 0);
752752
if (bus_options.disable_udevd) TRACE("UDEV udevd use disabled in registry\n");

0 commit comments

Comments
 (0)