[Pcsclite-cvs-commit] CVS HandlerTest/Host

CVS User rousseau ludovic.rousseau@free.fr
Tue, 21 Sep 2004 11:05:36 -0600


Update of /cvsroot/pcsclite/HandlerTest/Host
In directory haydn:/tmp/cvs-serv13359

Modified Files:
	handler_test.c 
Log Message:
pcsc_error(): add IFD_NOT_SUPPORTED case


--- /cvsroot/pcsclite/HandlerTest/Host/handler_test.c	2004/07/15 13:36:00	1.15
+++ /cvsroot/pcsclite/HandlerTest/Host/handler_test.c	2004/09/21 17:05:35	1.16
@@ -18,7 +18,7 @@
 */
 
 /*
- * $Id: handler_test.c,v 1.15 2004/07/15 13:36:00 rousseau Exp $
+ * $Id: handler_test.c,v 1.16 2004/09/21 17:05:35 rousseau Exp $
  */
 
 #include <stdio.h>
@@ -769,6 +769,10 @@
 			strcpy(strError, "IFD: response timeout");
 			break;
 
+		case IFD_NOT_SUPPORTED:
+			strcpy(strError, "IFD: not supported");
+			break;
+
 		default:
 			snprintf(strError, sizeof(strError)-1, "IFD: undocumented error: 0x%X", rv);
 	}