Skip to content

Commit

Permalink
damn.... thanks @nvx
Browse files Browse the repository at this point in the history
  • Loading branch information
iceman1001 committed Dec 31, 2023
1 parent 379baea commit 91fad1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/cmdhf14a.c
Original file line number Diff line number Diff line change
Expand Up @@ -2410,10 +2410,10 @@ int infoHF14A(bool verbose, bool do_nack_test, bool do_aid_search) {

int isMagic = 0;
if (isMifareClassic) {
isMagic = detect_mf_magic(true, 0);
isMagic = detect_mf_magic(true, MF_KEY_A, 0);
}
if (isMifareUltralight) {
isMagic = (detect_mf_magic(false, 0) == MAGIC_NTAG21X);
isMagic = (detect_mf_magic(false, MF_KEY_A, 0) == MAGIC_NTAG21X);
}
if (isMifareClassic) {
int res = detect_classic_static_nonce();
Expand Down

0 comments on commit 91fad1d

Please sign in to comment.