mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Fix return code check for iso14443b_select_card in hf epa
This commit is contained in:
parent
0944a12744
commit
4ffeebc193
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ int EPA_Setup()
|
||||||
iso14443b_setup();
|
iso14443b_setup();
|
||||||
// select the card
|
// select the card
|
||||||
return_code = iso14443b_select_card( &card_b_info );
|
return_code = iso14443b_select_card( &card_b_info );
|
||||||
if (return_code == 1) {
|
if (return_code == 0) {
|
||||||
Dbprintf("ISO 14443 Type B");
|
Dbprintf("ISO 14443 Type B");
|
||||||
iso_type = 'b';
|
iso_type = 'b';
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue