]> git.pld-linux.org Git - packages/openct.git/commitdiff
- obsolete
authorJakub Bogusz <qboosh@pld-linux.org>
Wed, 10 May 2006 13:10:50 +0000 (13:10 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    openct-ccid.patch -> 1.3

openct-ccid.patch [deleted file]

diff --git a/openct-ccid.patch b/openct-ccid.patch
deleted file mode 100644 (file)
index 0191d56..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
---- openct-0.6.4/src/ifd/ifd-ccid.c.orig       2005-04-26 19:54:19.353541448 +0200
-+++ openct-0.6.4/src/ifd/ifd-ccid.c    2005-04-26 20:08:58.811843464 +0200
-@@ -464,9 +464,15 @@
-              for (alt=0;alt < conf.interface[ifc].num_altsetting;alt++) {
-                   int ok=0;
-                   intf=&conf.interface[ifc].altsetting[alt];
--                  if (intf->bInterfaceClass != 0xb ||
--                      intf->bInterfaceSubClass != 0 ||
--                      intf->bInterfaceProtocol != 0)
-+                  /* it should be strict 0xb:0:0 test, but:
-+                   * - some "almost CCID-compliant" readers use class 0xb with
-+                   *   invalid 1:1 values for subclass:protocol
-+                   * - some other readers use "proprietary class" 0xff:1:1,
-+                   *   being "almost CCID-compliant"
-+                   */
-+                  if (((intf->bInterfaceClass != 0xb) && (intf->bInterfaceClass != 0xff)) ||
-+                      intf->bInterfaceSubClass > 1 ||
-+                      intf->bInterfaceProtocol > 1)
-                        continue;
-                   if (intf->bNumEndpoints != 3)
-                        continue;
This page took 0.094552 seconds and 4 git commands to generate.