diff options
author | Márton Németh <nm127@freemail.hu> | 2009-11-23 08:26:38 -0800 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-11-23 08:50:52 -0800 |
commit | 6236dfaa908d9e9c84a8c4d029f443104ed2c47f (patch) | |
tree | 82874a5400d31459416b10ed26ce59354284b78d /drivers/hid | |
parent | 52ce4eaa389eaac01876a4c1b6cacee15005b010 (diff) | |
download | linux-3.10-6236dfaa908d9e9c84a8c4d029f443104ed2c47f.tar.gz linux-3.10-6236dfaa908d9e9c84a8c4d029f443104ed2c47f.tar.bz2 linux-3.10-6236dfaa908d9e9c84a8c4d029f443104ed2c47f.zip |
Input: do not overwrite the first part of phys string
Use strlcat() to append a string to the previously created first part.
Signed-off-by: Márton Németh <nm127@freemail.hu>
Acked-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/usbhid/usbkbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/usbhid/usbkbd.c b/drivers/hid/usbhid/usbkbd.c index b342926dd7f..f843443ba5c 100644 --- a/drivers/hid/usbhid/usbkbd.c +++ b/drivers/hid/usbhid/usbkbd.c @@ -266,7 +266,7 @@ static int usb_kbd_probe(struct usb_interface *iface, le16_to_cpu(dev->descriptor.idProduct)); usb_make_path(dev, kbd->phys, sizeof(kbd->phys)); - strlcpy(kbd->phys, "/input0", sizeof(kbd->phys)); + strlcat(kbd->phys, "/input0", sizeof(kbd->phys)); input_dev->name = kbd->name; input_dev->phys = kbd->phys; |