Changeset 1136 for trunk/src/ifd
- Timestamp:
- 02/06/09 13:32:19 (3 years ago)
- File:
-
- 1 edited
-
trunk/src/ifd/ifd-ccid.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ifd/ifd-ccid.c
r1134 r1136 16 16 #include <stdlib.h> 17 17 #include <string.h> 18 #include <sys/stat.h> 19 #include <unistd.h> 18 20 19 21 #define CCID_ERR_ABORTED 0xFF /* CMD ABORTED */ … … 490 492 unsigned char *p; 491 493 int support_events = 0; 494 495 #define PCSCLITE_FILE "/var/run/pcscd/pcscd.comm" 496 struct stat buf; 497 498 /* give priority to pcsc-lite for CCID devices */ 499 if (0 == stat(PCSCLITE_FILE, &buf)) 500 sleep(3); 492 501 493 502 if (ifd_usb_get_device(dev, &de)) {
Note: See TracChangeset
for help on using the changeset viewer.
