Package: usbutils Version: 0.86-3 Severity: normal Tags: patch Usbutils 0.86-3 in unstable and testing fails to output the ChipCard Interface Descriptor for my GemPC Twin. This a regression since it works with version 0.73-10lenny1 in stable.
I'm including a patch. -- System Information: Debian Release: 5.0.4 APT prefers stable APT policy: (671, 'stable'), (300, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.26-2-xen-686 (SMP w/1 CPU core) Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash
diff -ur usbutils-0.86.old/lsusb.c usbutils-0.86/lsusb.c --- usbutils-0.86.old/lsusb.c 2009-08-18 00:28:42.000000000 +0200 +++ usbutils-0.86/lsusb.c 2010-02-14 10:36:01.000000000 +0100 @@ -606,6 +606,10 @@ case USB_CLASS_HID: dump_hid_device(dev, interface, buf); break; + case 0x0b: /* chip/smartcard + GemPC Twin, etc. */ + dump_ccid_device(buf); + break; default: goto dump; }

