From f5e61410c6d67acee2f767766e5c915a1e88e635 Mon Sep 17 00:00:00 2001 From: Antiklesys Date: Fri, 4 Jul 2025 18:37:46 +0800 Subject: [PATCH] Fixing style fix Fixing https://github.com/Antiklesys/proxmark3/commit/24d80f51a9fd88d8125220dc60000e4ac09a9457 where an AND was switched to an OR --- armsrc/iclass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/iclass.c b/armsrc/iclass.c index 768fbecbb..2bbde9dae 100644 --- a/armsrc/iclass.c +++ b/armsrc/iclass.c @@ -2828,7 +2828,7 @@ void iClass_Recover(iclass_recover_req_t *msg) { if (msg->test) { Dbprintf(_YELLOW_("*Cycled Reader*") " TEST Index - Loops: "_YELLOW_("%3d / %3d") " *", loops, msg->loop); - } else if (msg->debug || ((card_select == false) || (card_auth == false))) { + } else if (msg->debug || ((card_select == false) && (card_auth == false))) { Dbprintf(_YELLOW_("*Cycled Reader*") " Index: "_RED_("%3d")" Loops: "_YELLOW_("%3d / %3d") " *", index, loops, msg->loop); } else { DbprintfEx(FLAG_INPLACE, "[" _BLUE_("#") "] Index: "_CYAN_("%3d")" Loops: "_YELLOW_("%3d / %3d")" ", index, loops, msg->loop);