mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-22 06:13:27 -07:00
small fix
This commit is contained in:
parent
2989702f0f
commit
998815337e
2 changed files with 5 additions and 6 deletions
|
@ -1109,15 +1109,15 @@ int CmdHFEMVScan(const char *cmd) {
|
||||||
bool paramLoadJSON = arg_get_lit(4);
|
bool paramLoadJSON = arg_get_lit(4);
|
||||||
|
|
||||||
enum TransactionType TrType = TT_MSD;
|
enum TransactionType TrType = TT_MSD;
|
||||||
if (arg_get_lit(5))
|
|
||||||
TrType = TT_QVSDCMCHIP;
|
|
||||||
if (arg_get_lit(6))
|
if (arg_get_lit(6))
|
||||||
TrType = TT_CDA;
|
TrType = TT_QVSDCMCHIP;
|
||||||
if (arg_get_lit(7))
|
if (arg_get_lit(7))
|
||||||
|
TrType = TT_CDA;
|
||||||
|
if (arg_get_lit(8))
|
||||||
TrType = TT_VSDC;
|
TrType = TT_VSDC;
|
||||||
|
|
||||||
bool GenACGPO = arg_get_lit(8);
|
bool GenACGPO = arg_get_lit(9);
|
||||||
bool MergeJSON = arg_get_lit(9);
|
bool MergeJSON = arg_get_lit(10);
|
||||||
CLIParserFree();
|
CLIParserFree();
|
||||||
|
|
||||||
SetAPDULogging(showAPDU);
|
SetAPDULogging(showAPDU);
|
||||||
|
|
|
@ -38,7 +38,6 @@ enum TransactionType {
|
||||||
TT_QVSDCMCHIP,
|
TT_QVSDCMCHIP,
|
||||||
TT_CDA,
|
TT_CDA,
|
||||||
};
|
};
|
||||||
|
|
||||||
extern char *TransactionTypeStr[];
|
extern char *TransactionTypeStr[];
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue