Merge pull request #1230 from VortixDev/VortixDev-patch-mfpauth

Fix mfpauth error printout
This commit is contained in:
Iceman 2021-03-31 08:57:54 +02:00 committed by GitHub
commit 1d6b4b2722
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 %s", data[0], mfpGetErrorDescription(data[0]));
if (dropFieldIfError) DropField();
return 3;
}