From: Benjamin Close Date: Thu, 12 Mar 2009 11:17:53 +0000 (+1000) Subject: Error out when more than one instance of a name exists X-Git-Url: https://diplodocus.org/git/xorg-xinput/commitdiff_plain/199c323332dac782b45dcb092da0322149843d5a?ds=sidebyside;hp=49ef8a40f96c0383a8a42a78fda3a990ac934e59 Error out when more than one instance of a name exists Previously the check was in place for the duplicate name, however the first device with the requested name was still selected regardless. Correct this by exiting out forcing the user to select by id instead. Signed-off-by: Peter Hutterer --- diff --git a/src/xinput.c b/src/xinput.c index 466a814..1ee8bbf 100644 --- a/src/xinput.c +++ b/src/xinput.c @@ -191,6 +191,7 @@ find_device_info(Display *display, "Warning: There are multiple devices named \"%s\".\n" "To ensure the correct one is selected, please use " "the device ID instead.\n\n", name); + return NULL; } else { found = &devices[loop]; }