mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
Make error verbose
This commit is contained in:
parent
2f0b944554
commit
b2f535f788
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 (data[0] != 0x90) {
|
||||||
if (!silentMode) PrintAndLogEx(ERR, "Card response error: %02x", data[0]);
|
if (!silentMode) PrintAndLogEx(ERR, "Card response error: %02x %s", data[0], mfpGetErrorDescription(data[0]));
|
||||||
if (dropFieldIfError) DropField();
|
if (dropFieldIfError) DropField();
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue