mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-20 07:02:48 +08:00
Fix error byte index
This commit is contained in:
parent
3329e363e0
commit
2f0b944554
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ int MifareAuth4(mf4Session_t *mf4session, uint8_t *keyn, uint8_t *key, bool acti
|
|||
}
|
||||
|
||||
if (data[0] != 0x90) {
|
||||
if (!silentMode) PrintAndLogEx(ERR, "Card response error: %02x", data[2]);
|
||||
if (!silentMode) PrintAndLogEx(ERR, "Card response error: %02x", data[0]);
|
||||
if (dropFieldIfError) DropField();
|
||||
return 3;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue