aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/misc/ati_remote.c
diff options
context:
space:
mode:
authorMárton Németh <nm127@freemail.hu>2009-11-23 08:26:38 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2009-11-23 08:50:52 -0800
commit6236dfaa908d9e9c84a8c4d029f443104ed2c47f (patch)
tree82874a5400d31459416b10ed26ce59354284b78d /drivers/input/misc/ati_remote.c
parentInput: ads7846 - switch to using dev_vdbg() (diff)
downloadlinux-dev-6236dfaa908d9e9c84a8c4d029f443104ed2c47f.tar.xz
linux-dev-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/input/misc/ati_remote.c')
-rw-r--r--drivers/input/misc/ati_remote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/misc/ati_remote.c b/drivers/input/misc/ati_remote.c
index e290fde35e74..614b65d78fe9 100644
--- a/drivers/input/misc/ati_remote.c
+++ b/drivers/input/misc/ati_remote.c
@@ -766,7 +766,7 @@ static int ati_remote_probe(struct usb_interface *interface, const struct usb_de
ati_remote->interface = interface;
usb_make_path(udev, ati_remote->phys, sizeof(ati_remote->phys));
- strlcpy(ati_remote->phys, "/input0", sizeof(ati_remote->phys));
+ strlcat(ati_remote->phys, "/input0", sizeof(ati_remote->phys));
if (udev->manufacturer)
strlcpy(ati_remote->name, udev->manufacturer, sizeof(ati_remote->name));