[Pcsclite-cvs-commit] Drivers/ccid/src ifdhandler.c,1.12,1.13

rousseau@quantz.debian.org rousseau@quantz.debian.org
Thu, 29 Jan 2004 14:37:37 +0100


Update of /cvsroot/pcsclite/Drivers/ccid/src
In directory quantz:/tmp/cvs-serv22154

Modified Files:
	ifdhandler.c 
Log Message:
removed useless function name in debug messages since we use __FUNCTION__


Index: ifdhandler.c
===================================================================
RCS file: /cvsroot/pcsclite/Drivers/ccid/src/ifdhandler.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- ifdhandler.c	27 Jan 2004 13:32:55 -0000	1.12
+++ ifdhandler.c	29 Jan 2004 13:37:35 -0000	1.13
@@ -62,7 +62,7 @@
 
 	if (OpenPortByName(Lun, lpcDevice) != STATUS_SUCCESS)
 	{
-		DEBUG_CRITICAL("OpenPortByName failed");
+		DEBUG_CRITICAL("failed");
 		return IFD_COMMUNICATION_ERROR;
 	}
 
@@ -129,7 +129,7 @@
 
 	if (OpenPort(Lun, Channel) != STATUS_SUCCESS)
 	{
-		DEBUG_CRITICAL("OpenPort failed");
+		DEBUG_CRITICAL("failed");
 		return_value = IFD_COMMUNICATION_ERROR;
 	}
 
@@ -414,7 +414,7 @@
 			break;
 
 		default:
-			DEBUG_CRITICAL("IFDHPowerICC Action not supported");
+			DEBUG_CRITICAL("Action not supported");
 			return_value = IFD_NOT_SUPPORTED;
 	}
 end: