[Pcsclite-cvs-commit] r2102 - trunk/PCSC/src

Ludovic Rousseau rousseau at costa.debian.org
Mon Jul 10 09:37:42 UTC 2006


Author: rousseau
Date: 2006-07-10 09:37:40 +0000 (Mon, 10 Jul 2006)
New Revision: 2102

Modified:
   trunk/PCSC/src/winscard_clnt.c
Log:
SCardCheckDaemonAvailability(): test the presence of
PCSCLITE_PUBSHM_FILE (/var/run/pcscd.pub) instead of PCSCLITE_IPC_DIR
(/var/run) to detect the presence of pcscd

Thanks to Geoff Elgey for the bug report


Modified: trunk/PCSC/src/winscard_clnt.c
===================================================================
--- trunk/PCSC/src/winscard_clnt.c	2006-07-09 15:03:18 UTC (rev 2101)
+++ trunk/PCSC/src/winscard_clnt.c	2006-07-10 09:37:40 UTC (rev 2102)
@@ -3225,7 +3225,7 @@
 	LONG rv;
 	struct stat statBuffer;
 
-	rv = SYS_Stat(PCSCLITE_IPC_DIR, &statBuffer);
+	rv = SYS_Stat(PCSCLITE_PUBSHM_FILE, &statBuffer);
 
 	if (rv != 0)
 	{




More information about the Pcsclite-cvs-commit mailing list