# This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.447.73.1 -> 1.447.73.2 # drivers/usb/input/hid-core.c 1.23 -> 1.24 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 02/05/03 vojtech@twilight.ucw.cz 1.447.73.2 # Fix for the previous fix. hid->name is 128 bytes, not 64 bytes long. # -------------------------------------------- # diff -Nru a/drivers/usb/input/hid-core.c b/drivers/usb/input/hid-core.c --- a/drivers/usb/input/hid-core.c Tue May 7 15:18:26 2002 +++ b/drivers/usb/input/hid-core.c Tue May 7 15:18:26 2002 @@ -1398,7 +1398,7 @@ if (usb_string(dev, dev->descriptor.iProduct, buf, 64) > 0) snprintf(hid->name, 64, "%s %s", hid->name, buf); } else - snprintf(hid->name, 64, "%04x:%04x", dev->descriptor.idVendor, dev->descriptor.idProduct); + snprintf(hid->name, 128, "%04x:%04x", dev->descriptor.idVendor, dev->descriptor.idProduct); usb_make_path(dev, buf, 64); snprintf(hid->phys, 64, "%s/input%d", buf, ifnum);