mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 06:13:51 -07:00
Fix logic
This commit is contained in:
parent
f1963cfa82
commit
ba3d5c32ae
1 changed files with 1 additions and 1 deletions
|
@ -1024,7 +1024,7 @@ static int MFPKeyCheck(uint8_t startSector, uint8_t endSector, uint8_t startKeyA
|
|||
|
||||
for (int retry = 0; retry < 4; retry++) {
|
||||
res = MifareAuth4(NULL, keyn, keyList[i], selectCard, true, false, false, true);
|
||||
if (res == PM3_SUCCESS || PM3_EWRONGANSWER)
|
||||
if (res == PM3_SUCCESS || res == PM3_EWRONGANSWER)
|
||||
break;
|
||||
|
||||
if (verbose)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue