[Pcsclite-cvs-commit] Drivers/ccid/src/openct proto-t1.h,1.4,1.5

rousseau@haydn.debian.org rousseau@haydn.debian.org


Update of /cvsroot/pcsclite/Drivers/ccid/src/openct
In directory haydn:/tmp/cvs-serv26105/openct

Modified Files:
	proto-t1.h 
Log Message:
use "uint8_t *" instead of "unsigned char *" in the prototype of
t1_state_t.checksum field.


Index: proto-t1.h
===================================================================
RCS file: /cvsroot/pcsclite/Drivers/ccid/src/openct/proto-t1.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- proto-t1.h	15 Jul 2004 09:19:11 -0000	1.4
+++ proto-t1.h	15 Jul 2004 14:52:18 -0000	1.5
@@ -23,6 +23,7 @@
 #define __PROTO_T1_H__
 
 #include <unistd.h>
+#include <stdint.h>
 
 enum {
 	IFD_PROTOCOL_RECV_TIMEOUT = 0x0000,
@@ -54,8 +55,7 @@
 	unsigned int	retries;
 	unsigned int	rc_bytes;
 
-	unsigned int	(*checksum)(const unsigned char *,
-					size_t, unsigned char *);
+	unsigned int	(*checksum)(const uint8_t *, size_t, unsigned char *);
 
 	char			more;	/* more data bit */
 	unsigned char	previous_block[4];	/* to store the last R-block */