mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
Merge pull request #2291 from gsingh93/mf-dump-errors
Properly handle "hf mf dump" errors
This commit is contained in:
commit
a2bbc25101
1 changed files with 1 additions and 1 deletions
|
@ -580,7 +580,7 @@ static int mfc_read_tag(iso14a_card_select_t *card, uint8_t *carddata, uint8_t n
|
|||
uint64_t select_status = resp.oldarg[0];
|
||||
if (select_status == 0) {
|
||||
PrintAndLogEx(DEBUG, "iso14443a card select failed");
|
||||
return PM3_SUCCESS;
|
||||
return PM3_ESOFT;
|
||||
}
|
||||
|
||||
// store card info
|
||||
|
|
Loading…
Reference in a new issue