fix: dead code
This commit is contained in:
@@ -1701,7 +1701,7 @@ int CmdT55xxBruteForce(const char *Cmd) {
|
|||||||
|
|
||||||
PrintAndLogEx(INFO, "Search password range [%08X -> %08X]", start_password, end_password);
|
PrintAndLogEx(INFO, "Search password range [%08X -> %08X]", start_password, end_password);
|
||||||
|
|
||||||
while ((!found) || (curr <= end_password)){
|
while ( !found || (curr <= end_password)){
|
||||||
|
|
||||||
printf("."); fflush(stdout);
|
printf("."); fflush(stdout);
|
||||||
|
|
||||||
@@ -1713,9 +1713,9 @@ int CmdT55xxBruteForce(const char *Cmd) {
|
|||||||
PrintAndLogEx(WARNING, "Aquireing data from device failed. Quitting");
|
PrintAndLogEx(WARNING, "Aquireing data from device failed. Quitting");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
found = tryDetectModulation();
|
found = tryDetectModulation();
|
||||||
|
|
||||||
if (found) break;
|
|
||||||
++curr;
|
++curr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user