X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/3783c45af1ec1f478c3f17e8d75522a3043ad955..53fb848a0ad6bb8315c1ba5c382bf30ef4998007:/client/cmdsmartcard.c diff --git a/client/cmdsmartcard.c b/client/cmdsmartcard.c index 53ee9119..ac642fc9 100644 --- a/client/cmdsmartcard.c +++ b/client/cmdsmartcard.c @@ -929,7 +929,11 @@ static int CmdSmartSetClock(const char *Cmd){ static int CmdSmartList(const char *Cmd) { - CmdHFList("7816"); + if (UseAlternativeSmartcardReader) { + CmdHFList("7816 p"); + } else { + CmdHFList("7816"); + } return 0; }