From 35e4e756f08a334869d5fcae43d2c478441b7202 Mon Sep 17 00:00:00 2001 From: leslie Date: Sat, 21 Mar 2009 20:35:31 +0800 Subject: [PATCH] smartcards: fix ccid reader dummy PTS --- smartcard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smartcard.c b/smartcard.c index dd8f8d7..fc0cde5 100644 --- a/smartcard.c +++ b/smartcard.c @@ -1076,7 +1076,7 @@ protected: virtual int DeviceRead(unsigned char *mem, int len, int timeout, int initialTimeout=0) { return -1; } virtual int DeviceWrite(const unsigned char *mem, int len, int delay=0) { return -1; } virtual void DeviceToggleReset(void) {} - virtual bool DevicePTS(void) { return false; } + virtual bool DevicePTS(void) { return true; } virtual bool DeviceIsInserted(void); // virtual bool Reset(void); -- 2.39.5